| com.rift.coad.lib.security.user.UserStoreConnector
All known Subclasses: com.rift.coad.lib.security.user.xml.XMLUserStore,
UserStoreConnector | public interface UserStoreConnector extends LoginModule(Code) | | This interface supplies the ability to connect to the user data store. This
data store could be Database, Text File, XML File, LDAP etc.
author: Brett Chaldecott |
getName | public String getName()(Code) | | This method returns the name of the user store.
The string containing the name of the user store. |
getUserInfo | public UserSession getUserInfo(String username) throws UserException(Code) | | This method returns the user information for the given username. Note:
this method must not throw an exception if the user is not found, it must
instead return null.
Parameters: username - The name of the user to retrieve information for. UserSession The user object for the given username. exception: UserException - |
|
|