Schnittstelle TurbineUserGroupRoleEntity
- Alle bekannten Unterschnittstellen:
- TurbineGroup,- TurbineRole,- TurbineUser
- Alle bekannten Implementierungsklassen:
- AbstractTurbineSecurityEntityImpl,- TurbineGroupImpl,- TurbineRoleImpl,- TurbineUserImpl
public interface TurbineUserGroupRoleEntity
Represents the "turbine" model where permissions are in a many to many
 relationship to roles, roles are related to groups are related to users, all
 in many to many relationships.
- Version:
- $Id: TurbineRole.java 535465 2007-05-05 06:58:06Z tv $
- Autor:
- Eric Pugh
- 
MethodenübersichtModifizierer und TypMethodeBeschreibungvoidaddUserGroupRole(TurbineUserGroupRole userGroupRole) Add a User/Group/Role relation to this entity<T extends TurbineUserGroupRole>
 Set<T>Get the User/Group/Role set associated with this entityvoidremoveUserGroupRole(TurbineUserGroupRole userGroupRole) Remove a User/Group/Role relation from this entity<T extends TurbineUserGroupRole>
 voidsetUserGroupRoleSet(Set<T> userGroupRoleSet) Set the User/Group/Role set associated with this entity
- 
Methodendetails- 
getUserGroupRoleSetGet the User/Group/Role set associated with this entity- Typparameter:
- T- TurbineUserGroupRole
- Gibt zurück:
- a set of User/Group/Role relations
- Löst aus:
- DataBackendException- generic exception
 
- 
setUserGroupRoleSetSet the User/Group/Role set associated with this entity- Typparameter:
- T- TurbineUserGroupRole
- Parameter:
- userGroupRoleSet- a set of User/Group/Role relations
 
- 
addUserGroupRoleAdd a User/Group/Role relation to this entity- Parameter:
- userGroupRole- a User/Group/Role relation to add
- Löst aus:
- DataBackendException- generic exception
 
- 
removeUserGroupRoleRemove a User/Group/Role relation from this entity- Parameter:
- userGroupRole- a User/Group/Role relation to remove
- Löst aus:
- DataBackendException- generic exception
 
 
-