Class GroupList
- java.lang.Object
-
- com.tivoli.am.fim.trustserver.sts.uuser.GroupList
-
public class GroupList extends java.lang.Object
Represents the GroupList- Version:
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
GroupList_java_copyright
static java.lang.String
GroupList_java_sourceCodeID
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addGroup(Group g)
void
clear()
static GroupList
fromXml(org.w3c.dom.Element element)
java.util.Iterator
getGroupIterator()
Group[]
getGroups()
int
removeGroups(java.lang.String name, java.lang.String type)
Remove any groups that match the input name and type.void
setGroups(Group[] groups)
org.w3c.dom.Element
toXml(org.w3c.dom.Document owner)
-
-
-
Field Detail
-
GroupList_java_sourceCodeID
public static final java.lang.String GroupList_java_sourceCodeID
- See Also:
- Constant Field Values
-
GroupList_java_copyright
public static final java.lang.String GroupList_java_copyright
-
-
Constructor Detail
-
GroupList
public GroupList(Group[] groups)
-
-
Method Detail
-
getGroups
public Group[] getGroups()
-
setGroups
public final void setGroups(Group[] groups)
-
addGroup
public void addGroup(Group g)
-
getGroupIterator
public java.util.Iterator getGroupIterator()
-
clear
public void clear()
-
removeGroups
public int removeGroups(java.lang.String name, java.lang.String type)
Remove any groups that match the input name and type. Null for a name or type will match any name or time. In essence clear() == removeGroups(null, null)- Parameters:
name
- The name of the group.type
- The group type.- Returns:
- The number of removed groups.
-
fromXml
public static GroupList fromXml(org.w3c.dom.Element element)
-
toXml
public org.w3c.dom.Element toXml(org.w3c.dom.Document owner)
-
-