public interface GCubeGroup
| Modifier and Type | Method and Description |
|---|---|
boolean |
addMember(String member)
Adds the specified member to the group.
|
boolean |
addMembers(List<String> members)
Add a list of users
|
List<String> |
getMembers()
Returns a list of the members in the group.
|
String |
getName() |
boolean |
isMember(String member)
Returns true if the passed user is a member of the group.
|
boolean |
removeMember(String member)
Removes the specified member from the group.
|
boolean |
removeMembers(List<String> members)
Delete a list of users
|
String getName()
boolean addMember(String member)
user - the user to add to this group.boolean addMembers(List<String> members) throws InternalErrorException
users - InternalErrorExceptionboolean removeMember(String member)
user - the user to remove from this group.boolean removeMembers(List<String> members) throws InternalErrorException
users - InternalErrorExceptionboolean isMember(String member)
member - the user whose membership is to be checked.List<String> getMembers() throws InternalErrorException
InternalErrorExceptionCopyright © 2014. All Rights Reserved.