Uses of Interface
com.atlassian.user.Group

Packages that use Group
com.atlassian.user   
com.atlassian.user.search.query   
 

Uses of Group in com.atlassian.user
 

Methods in com.atlassian.user that return Group
 Group GroupManager.createGroup(java.lang.String groupName)
          Create a new group with the specified name.
 Group GroupManager.getGroup(java.lang.String groupName)
          Retrieves the group with the given name.
 

Methods in com.atlassian.user that return types with arguments of type Group
 Pager<Group> GroupManager.getGroups()
          Retrieves all groups in this repository.
 Pager<Group> GroupManager.getGroups(User user)
          Retrieves the groups to which the given user belongs.
 java.util.List<Group> GroupManager.getWritableGroups()
          Gets all editable groups.
 

Methods in com.atlassian.user with parameters of type Group
 void GroupManager.addMembership(Group group, User user)
          Adds the user to the specified group.
 Pager<java.lang.String> GroupManager.getExternalMemberNames(Group group)
          Retrieves the names of those members of the specified group which are stored in another repository.
 Pager<java.lang.String> GroupManager.getLocalMemberNames(Group group)
          Retrieves the names of those members of the specified group which are also stored in this repository.
 Pager<java.lang.String> GroupManager.getMemberNames(Group group)
          Retrieves the names of all members of the specified group.
 boolean GroupManager.hasMembership(Group group, User user)
          Returns true if the user is a member of the specified group.
 boolean GroupManager.isReadOnly(Group group)
          Returns true if the specified group and membership of the specified group cannot be modified in the repository.
 void GroupManager.removeGroup(Group group)
          Remove the group specified, if it exists in this repository.
 void GroupManager.removeMembership(Group group, User user)
          Removes the user from the specified group.
 

Uses of Group in com.atlassian.user.search.query
 

Methods in com.atlassian.user.search.query that return types with arguments of type Group
 SearchResult<Group> EntityQueryParser.findGroups(Query<Group> query)
          Returns the groups matching the provided query.
 SearchResult<Group> EntityQueryParser.findGroups(Query<Group> query, QueryContext context)
          If the repository matches the query context, returns the groups matching the query, otherwise returns null.
 

Method parameters in com.atlassian.user.search.query with type arguments of type Group
 SearchResult<Group> EntityQueryParser.findGroups(Query<Group> query)
          Returns the groups matching the provided query.
 SearchResult<Group> EntityQueryParser.findGroups(Query<Group> query, QueryContext context)
          If the repository matches the query context, returns the groups matching the query, otherwise returns null.
 



Copyright © 2005-2015 Atlassian. All Rights Reserved.