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