Package org.apache.fulcrum.security
Schnittstelle SecurityService
- Alle bekannten Implementierungsklassen:
- BaseSecurityService
public interface SecurityService
The Security Service manages Users, Groups Roles and Permissions in the
 system.
 The task performed by the security service include providing access to the
 various types of managers.
 
 Because of pluggable nature of the Services, it is possible to create
 multiple implementations of SecurityService, for example employing database
 and directory server as the data backend. 
- Version:
- $Id$
- Autor:
- Eric Pugh
- 
FeldübersichtFelder
- 
MethodenübersichtModifizierer und TypMethodeBeschreibungReturns the configured GroupManager.<T extends ModelManager>
 TReturns the configured ModelManager object that can then be casted to the specific model.Returns the configured PermissionManager.Returns the configured RoleManager.Returns the configured UserManager.
- 
Felddetails- 
ROLE
 
- 
- 
Methodendetails- 
getUserManagerUserManager getUserManager()Returns the configured UserManager.- Gibt zurück:
- An UserManager object
 
- 
getGroupManagerGroupManager getGroupManager()Returns the configured GroupManager.- Gibt zurück:
- An UserManager object
 
- 
getRoleManagerRoleManager getRoleManager()Returns the configured RoleManager.- Gibt zurück:
- An RoleManager object
 
- 
getPermissionManagerPermissionManager getPermissionManager()Returns the configured PermissionManager.- Gibt zurück:
- An PermissionManager object
 
- 
getModelManagerReturns the configured ModelManager object that can then be casted to the specific model.- Typparameter:
- T- ModelManager
- Gibt zurück:
- An ModelManager object
 
 
-