Interface DynamicModelManager
- All Superinterfaces:
ModelManager
,Serializable
- All Known Implementing Classes:
AbstractDynamicModelManager
Describes all the relationships between entities in the "Dynamic" model.
- Version:
- $Id$
- Author:
- Eric Pugh, Ben Gidley
-
Field Summary
Fields inherited from interface org.apache.fulcrum.security.ModelManager
ROLE
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addDelegate
(User delegator, User delegatee) Allow B to assumes A's roles, groups and permissionsvoid
Puts a role into a group This method is used when adding a role to a group.void
grant
(Role role, Permission permission) Puts a permission in a role This method is used when adding a permission to a rolevoid
Puts a user in a group.void
removeDelegate
(User delegator, User delegatee) Stop A having B's roles, groups and permissionsvoid
Remove a role from a group This method is used when removeing a role to a group.void
revoke
(Role role, Permission permission) Removes a permission from a rolevoid
Removes a user from a groupvoid
Revokes all roles and users from a Group This method is typically used when deleting a Group.void
revokeAll
(Permission permission) Revoke from a permission all roles This method is typically used when deleting a Permissionvoid
Revokes all permissions from a Role.void
Revokes all roles from an User.
-
Method Details
-
grant
Puts a role into a group This method is used when adding a role to a group.- Parameters:
group
- the group to userole
- the role that will join the group- Throws:
DataBackendException
- if there was an error accessing the data backend.UnknownEntityException
- if the group or role is not present.
-
revoke
Remove a role from a group This method is used when removeing a role to a group.- Parameters:
group
- the group to userole
- the role that will join the group- Throws:
DataBackendException
- if there was an error accessing the data backend.UnknownEntityException
- if the group or role is not present.
-
grant
Puts a permission in a role This method is used when adding a permission to a role- Parameters:
role
- the Rolepermission
- the Permission- Throws:
DataBackendException
- if there was an error accessing the data backend.UnknownEntityException
- if the account is not present.
-
revoke
Removes a permission from a role- Parameters:
role
- the Rolepermission
- the Permission- Throws:
DataBackendException
- if there was an error accessing the data backend.UnknownEntityException
- if the user or group is not present.
-
grant
Puts a user in a group. This method is used when adding a user to a group- Parameters:
user
- the Usergroup
- the Group- Throws:
DataBackendException
- if there was an error accessing the data backend.UnknownEntityException
- if the account is not present.
-
revoke
Removes a user from a group- Parameters:
user
- the Usergroup
- the Group- Throws:
DataBackendException
- if there was an error accessing the data backend.UnknownEntityException
- if the user or group is not present.
-
revokeAll
Revokes all roles from an User. This method is typically used when deleting an account.- Parameters:
user
- the User- Throws:
DataBackendException
- if there was an error accessing the data backend.UnknownEntityException
- if the account is not present.
-
revokeAll
Revoke from a permission all roles This method is typically used when deleting a Permission- Parameters:
permission
- the Permission.- Throws:
DataBackendException
- if there was an error accessing the data backend.UnknownEntityException
- if the permission is not present.
-
revokeAll
Revokes all permissions from a Role. This method is typically used when deleting a Role.- Parameters:
role
- the Role- Throws:
DataBackendException
- if there was an error accessing the data backend.UnknownEntityException
- if the Role is not present.
-
revokeAll
Revokes all roles and users from a Group This method is typically used when deleting a Group.- Parameters:
group
- the Group- Throws:
DataBackendException
- if there was an error accessing the data backend.UnknownEntityException
- if the Group is not present.
-
addDelegate
void addDelegate(User delegator, User delegatee) throws DataBackendException, UnknownEntityException Allow B to assumes A's roles, groups and permissions- Parameters:
delegator
- Adelegatee
- B- Throws:
DataBackendException
- if there was an error accessing the data backend.UnknownEntityException
- if the Group is not present.
-
removeDelegate
void removeDelegate(User delegator, User delegatee) throws DataBackendException, UnknownEntityException Stop A having B's roles, groups and permissions- Parameters:
delegator
- Adelegatee
- B- Throws:
DataBackendException
- if there was an error accessing the data backend.UnknownEntityException
- if the Group is not present.
-