|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.turbine.util.security.SecuritySet
org.apache.turbine.util.security.GroupSet
This class represents a set of Groups. It's useful for building administration UI. It enforces that only Group objects are allowed in the set and only relevant methods are available.
Field Summary |
Fields inherited from class org.apache.turbine.util.security.SecuritySet |
idMap, nameMap |
Constructor Summary | |
GroupSet()
Constructs an empty GroupSet |
|
GroupSet(java.util.Collection groups)
Constructs a new GroupSet with specified contents. |
Method Summary | |
boolean |
add(java.util.Collection groups)
Adds the Groups in a Collection to this GroupSet. |
boolean |
add(Group group)
Adds a Group to this GroupSet. |
boolean |
add(GroupSet groupSet)
Adds the Groups in another GroupSet to this GroupSet. |
boolean |
contains(Group group)
Checks whether this GroupSet contains a Group. |
Group |
getGroup(java.lang.String groupName)
Deprecated. Use getGroupByName instead. |
Group |
getGroupById(int groupId)
Returns a Group with the given id, if it is contained in this GroupSet. |
Group |
getGroupByName(java.lang.String groupName)
Returns a Group with the given name, if it is contained in this GroupSet. |
Group[] |
getGroupsArray()
Returns an Array of Groups in this GroupSet. |
boolean |
remove(Group group)
Removes a Group from this GroupSet. |
java.lang.String |
toString()
Print out a GroupSet as a String |
Methods inherited from class org.apache.turbine.util.security.SecuritySet |
clear, contains, containsId, containsName, elements, getIds, getNames, getSet, iterator, size |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public GroupSet()
public GroupSet(java.util.Collection groups)
groups
- A collection of groups to be contained in the set.Method Detail |
public boolean add(Group group)
group
- A Group.
public boolean add(java.util.Collection groups)
groups
- A Collection of Groups.
public boolean add(GroupSet groupSet)
groupSet
- A GroupSet.
public boolean remove(Group group)
group
- A Group.
public boolean contains(Group group)
group
- A Group.
public Group getGroup(java.lang.String groupName)
groupName
- Name of Group.
public Group getGroupByName(java.lang.String groupName)
groupName
- Name of Group.
public Group getGroupById(int groupId)
groupId
- Id of the group
public Group[] getGroupsArray()
public java.lang.String toString()
toString
in class SecuritySet
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |