Klasse MemoryUserManagerImpl
java.lang.Object
org.apache.avalon.framework.logger.AbstractLogEnabled
org.apache.fulcrum.security.spi.AbstractManager
org.apache.fulcrum.security.spi.AbstractEntityManager
org.apache.fulcrum.security.spi.AbstractUserManager
org.apache.fulcrum.security.memory.MemoryUserManagerImpl
- Alle implementierten Schnittstellen:
Serializable
,org.apache.avalon.framework.activity.Disposable
,org.apache.avalon.framework.configuration.Configurable
,org.apache.avalon.framework.logger.LogEnabled
,org.apache.avalon.framework.service.Serviceable
,org.apache.avalon.framework.thread.ThreadSafe
,UserManager
- Bekannte direkte Unterklassen:
MemoryTurbineUserManagerImpl
This implementation keeps all objects in memory. This is mostly meant to help
with testing and prototyping of ideas.
- Version:
- $Id$
- Autor:
- Eric Pugh
- Siehe auch:
-
Feldübersicht
Von Klasse geerbte Felder org.apache.fulcrum.security.spi.AbstractManager
manager
Von Schnittstelle geerbte Felder org.apache.fulcrum.security.UserManager
ROLE
-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungboolean
checkExists
(String userName) Check whether a specified user's account exists.Retrieves all users defined in the system.protected <T extends User>
TpersistNewUser
(T user) Creates new user account with specified attributes.void
removeUser
(User user) Removes an user account from the system.retrieveUserList
(Object criteria) void
Stores User attributes.Von Klasse geerbte Methoden org.apache.fulcrum.security.spi.AbstractUserManager
addUser, authenticate, changePassword, checkExists, forcePassword, getACL, getACLFactory, getUser, getUser, getUserById, getUserInstance, getUserInstance
Von Klasse geerbte Methoden org.apache.fulcrum.security.spi.AbstractEntityManager
configure, getClassName, setClassName
Von Klasse geerbte Methoden org.apache.fulcrum.security.spi.AbstractManager
dispose, getGroupManager, getPermissionManager, getRoleManager, getServiceManager, getUserManager, release, resolve, service
Von Klasse geerbte Methoden org.apache.avalon.framework.logger.AbstractLogEnabled
enableLogging, getLogger, setupLogger, setupLogger, setupLogger
-
Konstruktordetails
-
MemoryUserManagerImpl
public MemoryUserManagerImpl()
-
-
Methodendetails
-
checkExists
Check whether a specified user's account exists. The login name is used for looking up the account.- Parameter:
userName
- The name of the user to be checked.- Gibt zurück:
- true if the specified account exists
- Löst aus:
DataBackendException
- if there was an error accessing the data backend.
-
getAllUsers
Retrieves all users defined in the system.- Gibt zurück:
- the names of all users defined in the system.
- Löst aus:
DataBackendException
- if there was an error accessing the data backend.
-
retrieveUserList
- Löst aus:
DataBackendException
-
removeUser
Removes an user account from the system.- Parameter:
user
- the object describing the account to be removed.- Löst aus:
DataBackendException
- if there was an error accessing the data backend.UnknownEntityException
- if the user account is not present.
-
persistNewUser
Creates new user account with specified attributes.- Angegeben von:
persistNewUser
in KlasseAbstractUserManager
- Parameter:
user
- the object describing account to be created.- Löst aus:
DataBackendException
- if there was an error accessing the data backend.
-
saveUser
Stores User attributes. The User is required to exist in the system.- Parameter:
user
- The User to be stored.- Löst aus:
DataBackendException
- if there was an error accessing the data backendUnknownEntityException
- if the role does not exist.
-