Package org.apache.catalina.users
Class GenericGroup<UD extends UserDatabase>
- java.lang.Object
- 
- org.apache.catalina.users.AbstractGroup
- 
- org.apache.catalina.users.GenericGroup<UD>
 
 
- 
- Type Parameters:
- UD- The specific type of UserDase with which this group is associated
 - All Implemented Interfaces:
- java.security.Principal,- Group
 - Direct Known Subclasses:
- MemoryGroup
 
 public class GenericGroup<UD extends UserDatabase> extends AbstractGroup Concrete implementation of Groupfor aUserDatabase.- Author:
- Craig R. McClanahan
 
- 
- 
Field SummaryFields Modifier and Type Field Description protected UDdatabaseTheUserDatabasethat owns this group.protected java.util.concurrent.CopyOnWriteArrayList<Role>rolesThe set ofRoles associated with this group.- 
Fields inherited from class org.apache.catalina.users.AbstractGroupdescription, groupname
 
- 
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddRole(Role role)Add a newRoleto those assigned specifically to this group.booleanequals(java.lang.Object obj)java.util.Iterator<Role>getRoles()Return the set ofRoles assigned specifically to this group.UserDatabasegetUserDatabase()Return theUserDatabasewithin which this Group is defined.java.util.Iterator<User>getUsers()Return the set ofUsers that are members of this group.inthashCode()booleanisInRole(Role role)Is this group specifically assigned the specifiedRole?voidremoveRole(Role role)Remove aRolefrom those assigned to this group.voidremoveRoles()Remove allRoles from those assigned to this group.- 
Methods inherited from class org.apache.catalina.users.AbstractGroupgetDescription, getGroupname, getName, setDescription, setGroupname
 
- 
 
- 
- 
- 
Field Detail- 
databaseprotected final UD extends UserDatabase database TheUserDatabasethat owns this group.
 
- 
 - 
Method Detail- 
getRolespublic java.util.Iterator<Role> getRoles() Return the set ofRoles assigned specifically to this group.- Specified by:
- getRolesin interface- Group
- Specified by:
- getRolesin class- AbstractGroup
- Returns:
- the set of Roles assigned specifically to this group.
 
 - 
getUserDatabasepublic UserDatabase getUserDatabase() Return theUserDatabasewithin which this Group is defined.- Specified by:
- getUserDatabasein interface- Group
- Specified by:
- getUserDatabasein class- AbstractGroup
- Returns:
- the UserDatabasewithin which this Group is defined.
 
 - 
getUserspublic java.util.Iterator<User> getUsers() Return the set ofUsers that are members of this group.- Specified by:
- getUsersin interface- Group
- Specified by:
- getUsersin class- AbstractGroup
- Returns:
- the set of Users that are members of this group.
 
 - 
addRolepublic void addRole(Role role) Add a newRoleto those assigned specifically to this group.- Specified by:
- addRolein interface- Group
- Specified by:
- addRolein class- AbstractGroup
- Parameters:
- role- The new role
 
 - 
isInRolepublic boolean isInRole(Role role) Is this group specifically assigned the specifiedRole?- Specified by:
- isInRolein interface- Group
- Specified by:
- isInRolein class- AbstractGroup
- Parameters:
- role- The role to check
- Returns:
- trueif the group is assigned to the specified role otherwise- false
 
 - 
removeRolepublic void removeRole(Role role) Remove aRolefrom those assigned to this group.- Specified by:
- removeRolein interface- Group
- Specified by:
- removeRolein class- AbstractGroup
- Parameters:
- role- The old role
 
 - 
removeRolespublic void removeRoles() Remove allRoles from those assigned to this group.- Specified by:
- removeRolesin interface- Group
- Specified by:
- removeRolesin class- AbstractGroup
 
 - 
equalspublic boolean equals(java.lang.Object obj) - Specified by:
- equalsin interface- java.security.Principal
- Overrides:
- equalsin class- java.lang.Object
 
 - 
hashCodepublic int hashCode() - Specified by:
- hashCodein interface- java.security.Principal
- Overrides:
- hashCodein class- java.lang.Object
 
 
- 
 
-