blob: 60db57264b157501ecea886bbcbf504c96d6936a [file] [log] [blame]
package org.apache.archiva.redback.rbac.memory;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import org.apache.archiva.redback.users.User;
/**
* MemoryAuthorizationDataSource:
*
* @author Jesse McConnell
*
*/
public class MemoryAuthorizationDataSource
// implements AuthorizationDataSource
{
Object principal;
User user;
Object permission;
public MemoryAuthorizationDataSource( Object principal, User user, Object permission )
{
this.principal = principal;
this.user = user;
this.permission = permission;
}
public Object getPrincipal()
{
return principal;
}
public void setPrincipal( String principal )
{
this.principal = principal;
}
public User getUser()
{
return user;
}
public void setUser( User user )
{
this.user = user;
}
public Object getPermission()
{
return permission;
}
public void setPermission( Object permission )
{
this.permission = permission;
}
}