Class GenericUser<UD extends UserDatabase>
java.lang.Object
org.apache.catalina.users.AbstractUser
org.apache.catalina.users.GenericUser<UD>
- Type Parameters:
- UD- The specific type of UserDase with which this role is associated
- Direct Known Subclasses:
- MemoryUser
 Concrete implementation of User for a UserDatabase.
 
- Author:
- Craig R. McClanahan
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprotected final UDTheUserDatabasethat owns this user.protected final CopyOnWriteArrayList<Group> The set ofGroups that this user is a member of.protected final CopyOnWriteArrayList<Role> The set ofRoles associated with this user.Fields inherited from class org.apache.catalina.users.AbstractUserfullName, password, username
- 
Method SummaryModifier and TypeMethodDescriptionvoidAdd a newGroupto those this user belongs to.voidAdd aRoleto those assigned specifically to this user.booleangetRoles()inthashCode()booleanIs this user in the specifiedGroup?booleanIs this user specifically assigned the specifiedRole?voidremoveGroup(Group group) Remove aGroupfrom those this user belongs to.voidRemove allGroups from those this user belongs to.voidremoveRole(Role role) Remove aRolefrom those assigned to this user.voidRemove allRoles from those assigned to this user.voidsetFullName(String fullName) Set the full name of this user.voidsetPassword(String password) Set the logon password of this user, optionally prefixed with the identifier of an encoding scheme surrounded by curly braces, such as{md5}xxxxx.voidsetUsername(String username) Set the logon username of this user, which must be unique within the scope of aUserDatabase.Methods inherited from class org.apache.catalina.users.AbstractUsergetFullName, getName, getPassword, getUsername
- 
Field Details- 
databaseTheUserDatabasethat owns this user.
- 
groupsThe set ofGroups that this user is a member of.
- 
rolesThe set ofRoles associated with this user.
 
- 
- 
Method Details- 
getGroups
- 
getRoles
- 
getUserDatabase- Returns:
- the UserDatabasewithin which this User is defined.
 
- 
addGroup
- 
addRole
- 
isInGroup
- 
isInRole
- 
removeGroup
- 
removeGroups
- 
removeRole
- 
removeRoles
- 
setFullNameDescription copied from interface:UserSet the full name of this user.- Specified by:
- setFullNamein interface- User
- Overrides:
- setFullNamein class- AbstractUser
- Parameters:
- fullName- The new full name
 
- 
setPasswordDescription copied from interface:UserSet the logon password of this user, optionally prefixed with the identifier of an encoding scheme surrounded by curly braces, such as{md5}xxxxx.- Specified by:
- setPasswordin interface- User
- Overrides:
- setPasswordin class- AbstractUser
- Parameters:
- password- The new logon password
 
- 
setUsernameDescription copied from interface:UserSet the logon username of this user, which must be unique within the scope of aUserDatabase.- Specified by:
- setUsernamein interface- User
- Overrides:
- setUsernamein class- AbstractUser
- Parameters:
- username- The new logon username
 
- 
equals
- 
hashCode
 
-