Interface TurbinePermission
- All Superinterfaces:
Permission
,SecurityEntity
,Serializable
- All Known Implementing Classes:
TurbinePermissionImpl
public interface TurbinePermission extends Permission
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: TurbinePermission.java 1884679 2020-12-21 12:56:47Z gk $
- Author:
- Eric Pugh
-
Method Summary
Modifier and Type Method Description void
addRole(Role role)
Add a role to this permissionRoleSet
getRoles()
Get the roles that this permission belongs to<T extends Role>
Set<T>getRolesAsSet()
Get the roles that this permission belongs to as Setvoid
removeRole(Role role)
Remove a role from this permissionvoid
setRoles(RoleSet roleSet)
Set the roles that this permission belongs to<T extends Role>
voidsetRolesAsSet(Set<T> roles)
Set the roles that this permission belongs to as SetMethods inherited from interface org.apache.fulcrum.security.entity.SecurityEntity
getId, getName, setId, setName
-
Method Details
-
getRoles
RoleSet getRoles()Get the roles that this permission belongs to- Returns:
- a set of roles
-
setRoles
Set the roles that this permission belongs to- Parameters:
roleSet
- a set of roles
-
addRole
Add a role to this permission- Parameters:
role
- the role to add
-
removeRole
Remove a role from this permission- Parameters:
role
- the role to remove
-
setRolesAsSet
Set the roles that this permission belongs to as Set- Type Parameters:
T
- Role- Parameters:
roles
- a set of roles
-
getRolesAsSet
Get the roles that this permission belongs to as Set- Type Parameters:
T
-- Returns:
- a set of roles
-