blob: 43ac7fe0920ba61369c144c9ec0683e8ee9d394f [file] [log] [blame]
package org.apache.fulcrum.security.model.dynamic.entity;
/*
* 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 java.util.Set;
import org.apache.fulcrum.security.entity.User;
import org.apache.fulcrum.security.model.basic.entity.BasicUser;
/**
* Represents the "simple" model where permissions are related to roles, roles
* are related to groups and groups are related to users, all in many to many
* relationships.
*
* Users have a set of delegates and delegatee's. If user A has B in their
* delegates - B assumes A's groups,roles and permissions If user C has D in
* their delegatees - C assumes D's groups,roles and permissions
*
* @author <a href="mailto:epugh@upstate.com">Eric Pugh</a>
* @version $Id$
*/
public interface DynamicUser extends BasicUser
{
/**
* Get the set of delegatees for this user
*
* @param <T>
* @return Returns the delegatees.
*/
public <T extends User> Set<T> getDelegatees();
/**
* Set the delegatees for this user
*
* @param delegatees
* The delegatees to set.
*/
public <T extends User> void setDelegatees(Set<T> delegatees);
/**
* Get the set of delegators for this user
*
* @param <T>
* @return Returns the delegators.
*/
public <T extends User> Set<T> getDelegators();
/**
* Set the delegators for this user
*
* @param delegators
* The delegators to set.
*/
public <T extends User> void setDelegators(Set<T> delegators);
}