Uses of Interface
com.atlassian.crowd.model.group.Group

Packages that use Group
com.atlassian.crowd.acceptance.tests.directory   
com.atlassian.crowd.console.action.group   
com.atlassian.crowd.console.action.role   
com.atlassian.crowd.dao.group   
com.atlassian.crowd.directory   
com.atlassian.crowd.directory.hybrid   
com.atlassian.crowd.directory.ldap.cache   
com.atlassian.crowd.directory.ldap.mapper.entity   
com.atlassian.crowd.embedded.core.util   
com.atlassian.crowd.embedded.spi   
com.atlassian.crowd.event.group   
com.atlassian.crowd.event.remote.group   
com.atlassian.crowd.event.role   
com.atlassian.crowd.exception   
com.atlassian.crowd.integration.rest.entity   
com.atlassian.crowd.integration.rest.service   
com.atlassian.crowd.integration.rest.util   
com.atlassian.crowd.manager.application   
com.atlassian.crowd.manager.directory   
com.atlassian.crowd.migration.legacy   
com.atlassian.crowd.migration.legacy.database   
com.atlassian.crowd.model.group   
com.atlassian.crowd.plugin.rest.util   
com.atlassian.crowd.security.demo.action.group   
com.atlassian.crowd.security.demo.action.user   
com.atlassian.crowd.security.demo.model   
com.atlassian.crowd.service.client   
com.atlassian.crowd.service.soap   
 

Uses of Group in com.atlassian.crowd.acceptance.tests.directory
 

Methods in com.atlassian.crowd.acceptance.tests.directory that return Group
protected  Group BaseTest.addGroup(java.lang.String groupName, java.lang.Long directoryId)
           
 

Uses of Group in com.atlassian.crowd.console.action.group
 

Fields in com.atlassian.crowd.console.action.group declared as Group
protected  Group ViewGroup.group
           
 

Methods in com.atlassian.crowd.console.action.group that return Group
 Group ViewGroup.getGroup()
           
 Group RemoveGroup.getGroup()
           
 

Methods in com.atlassian.crowd.console.action.group that return types with arguments of type Group
 java.util.Collection<Group> ViewGroupMembers.getAllNonMemberGroups()
           
 java.util.Collection<Group> ViewGroupMembers.getSubGroups()
           
 

Methods in com.atlassian.crowd.console.action.group with parameters of type Group
protected  void AddGroup.syncFieldsFromGroup(Group group)
          Ensures that the fields (eg name, active) are the same as the values in the group
 

Method parameters in com.atlassian.crowd.console.action.group with type arguments of type Group
 void ViewGroupMembers.setSubGroups(java.util.Collection<Group> subGroups)
           
 

Uses of Group in com.atlassian.crowd.console.action.role
 

Fields in com.atlassian.crowd.console.action.role declared as Group
protected  Group ViewRole.role
           
 

Methods in com.atlassian.crowd.console.action.role that return Group
 Group ViewRole.getRole()
           
 Group RemoveRole.getRole()
           
 

Methods in com.atlassian.crowd.console.action.role with parameters of type Group
protected  void AddRole.syncFieldsFromRole(Group role)
           
 

Uses of Group in com.atlassian.crowd.dao.group
 

Methods in com.atlassian.crowd.dao.group that return types with arguments of type Group
 BatchResultWithIdReferences<Group> InternalGroupDao.addAll(java.util.Collection<InternalGroupWithAttributes> groups)
           
 BatchResultWithIdReferences<Group> GroupDAOHibernate.addAll(java.util.Collection<InternalGroupWithAttributes> groups)
           
 BatchResult<Group> GroupDAOHibernate.addAll(java.util.Set<? extends Group> groups)
           
 

Methods in com.atlassian.crowd.dao.group with parameters of type Group
 InternalGroup GroupDAOHibernate.add(Group group)
           
 InternalGroup GroupDAOHibernate.addLocal(Group group)
           
 void GroupDAOHibernate.remove(Group group)
           
 void GroupDAOHibernate.removeAttribute(Group group, java.lang.String attributeName)
           
 InternalGroup GroupDAOHibernate.rename(Group group, java.lang.String newName)
           
 void GroupDAOHibernate.storeAttributes(Group group, java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes)
           
 InternalGroup GroupDAOHibernate.update(Group group)
           
 

Method parameters in com.atlassian.crowd.dao.group with type arguments of type Group
 BatchResult<Group> GroupDAOHibernate.addAll(java.util.Set<? extends Group> groups)
           
 

Uses of Group in com.atlassian.crowd.directory
 

Classes in com.atlassian.crowd.directory that implement Group
 class ImmutableGroup
           
 

Methods in com.atlassian.crowd.directory that return Group
 Group RemoteCrowdDirectory.addGroup(GroupTemplate group)
           
 Group DelegatedAuthenticationDirectory.addGroup(GroupTemplate group)
           
 Group AbstractInternalDirectory.addGroup(GroupTemplate group)
           
 Group RemoteDirectory.addGroup(GroupTemplate group)
          Adds a group to the directory store.
 Group SpringLDAPConnector.addGroup(GroupTemplate group)
           
 Group Rfc2307.addGroup(GroupTemplate group)
           
 Group DbCachingRemoteDirectory.addGroup(GroupTemplate group)
           
 Group InternalDirectory.addLocalGroup(GroupTemplate group)
           
 Group CachingDirectory.addLocalGroup(GroupTemplate group)
           
abstract  Group AbstractInternalDirectory.addLocalGroup(GroupTemplate group)
           
 Group InternalRemoteDirectory.addLocalGroup(GroupTemplate group)
           
 Group RemoteCrowdDirectory.findGroupByName(java.lang.String name)
           
 Group DelegatedAuthenticationDirectory.findGroupByName(java.lang.String name)
           
 Group RemoteDirectory.findGroupByName(java.lang.String name)
          Finds the group that matches the supplied name.
 Group DbCachingRemoteDirectory.findGroupByName(java.lang.String name)
           
 Group RemoteCrowdDirectory.renameGroup(java.lang.String oldName, java.lang.String newName)
           
 Group DelegatedAuthenticationDirectory.renameGroup(java.lang.String oldName, java.lang.String newName)
           
 Group AbstractInternalDirectory.renameGroup(java.lang.String oldName, java.lang.String newName)
           
 Group RemoteDirectory.renameGroup(java.lang.String oldName, java.lang.String newName)
          Renames a group.
 Group SpringLDAPConnector.renameGroup(java.lang.String oldName, java.lang.String newName)
           
 Group Rfc2307.renameGroup(java.lang.String oldName, java.lang.String newName)
           
 Group DbCachingRemoteDirectory.renameGroup(java.lang.String oldName, java.lang.String newName)
           
 Group RemoteCrowdDirectory.updateGroup(GroupTemplate group)
           
 Group DelegatedAuthenticationDirectory.updateGroup(GroupTemplate group)
           
 Group AbstractInternalDirectory.updateGroup(GroupTemplate group)
           
 Group RemoteDirectory.updateGroup(GroupTemplate group)
          Updates the group.
 Group SpringLDAPConnector.updateGroup(GroupTemplate group)
           
 Group Rfc2307.updateGroup(GroupTemplate group)
           
 Group DbCachingRemoteDirectory.updateGroup(GroupTemplate group)
           
 

Methods in com.atlassian.crowd.directory that return types with arguments of type Group
 java.util.Collection<Group> InternalDirectory.addAllGroups(java.util.Set<GroupTemplate> groups)
           
 java.util.Collection<Group> CachingDirectory.addAllGroups(java.util.Set<GroupTemplate> groups)
           
 java.util.Collection<Group> InternalRemoteDirectory.addAllGroups(java.util.Set<GroupTemplate> groups)
           
 

Methods in com.atlassian.crowd.directory with parameters of type Group
 int ImmutableGroup.compareTo(Group o)
           
protected  javax.naming.directory.Attributes SpringLDAPConnector.getNewGroupAttributes(Group group)
           
protected  void SpringLDAPConnector.getNewGroupDirectorySpecificAttributes(Group group, javax.naming.directory.Attributes attributes)
           
protected  void MicrosoftActiveDirectory.getNewGroupDirectorySpecificAttributes(Group group, javax.naming.directory.Attributes attributes)
          If we want to be able to nest groups, we need to create distribution groups rather than security groups.
 void DbCachingRemoteDirectoryCache.syncGroupMembershipsForGroup(Group parentGroup, java.util.List<java.lang.String> remoteGroups)
           
 void DbCachingRemoteDirectoryCache.syncUserMembershipsForGroup(Group group, java.util.List<java.lang.String> remoteUsers)
           
 void InternalDirectoryUtilsImpl.validateGroupName(Group group, java.lang.String groupName)
           
 void InternalDirectoryUtils.validateGroupName(Group group, java.lang.String groupName)
           
 

Method parameters in com.atlassian.crowd.directory with type arguments of type Group
 void DbCachingRemoteDirectoryCache.addOrUpdateCachedGroups(java.util.List<? extends Group> remoteGroups, java.util.Date syncStartDate)
           
 void DbCachingRemoteDirectoryCache.deleteCachedGroupsNotIn(GroupType groupType, java.util.List<? extends Group> remoteGroups, java.util.Date syncStartDate)
           
 

Constructors in com.atlassian.crowd.directory with parameters of type Group
ReadOnlyGroupException(Group group)
           
 

Uses of Group in com.atlassian.crowd.directory.hybrid
 

Methods in com.atlassian.crowd.directory.hybrid that return Group
 Group LocalGroupHandler.createLocalGroup(GroupTemplate groupTemplate)
          Creates a local group with the supplied template.
 Group LocalGroupHandler.findLocalGroup(java.lang.String groupName)
          Finds a local group.
 Group LocalGroupHandler.updateLocalGroup(GroupTemplate groupTemplate)
          Updates a local group.
 

Uses of Group in com.atlassian.crowd.directory.ldap.cache
 

Methods in com.atlassian.crowd.directory.ldap.cache that return types with arguments of type Group
protected  java.util.List<? extends Group> UsnChangedCacheRefresher.synchroniseAllGroups(GroupType groupType, DirectoryCache directoryCache)
           
protected  java.util.List<? extends Group> RemoteDirectoryCacheRefresher.synchroniseAllGroups(GroupType groupType, DirectoryCache directoryCache)
           
protected abstract  java.util.List<? extends Group> AbstractCacheRefresher.synchroniseAllGroups(GroupType legacyRole, DirectoryCache directoryCache)
           
 

Methods in com.atlassian.crowd.directory.ldap.cache with parameters of type Group
 void DirectoryCache.syncGroupMembershipsForGroup(Group ldapGroup, java.util.List<java.lang.String> groups)
           
protected  void UsnChangedCacheRefresher.synchroniseMembershipsForGroup(GroupType groupType, Group group, DirectoryCache directoryCache)
           
protected  void AbstractCacheRefresher.synchroniseMembershipsForGroup(GroupType groupType, Group ldapGroup, DirectoryCache directoryCache)
           
 void DirectoryCache.syncUserMembershipsForGroup(Group ldapGroup, java.util.List<java.lang.String> remoteUsers)
           
 

Method parameters in com.atlassian.crowd.directory.ldap.cache with type arguments of type Group
 void DirectoryCache.addOrUpdateCachedGroups(java.util.List<? extends Group> groups, java.util.Date syncStartDate)
           
 void DirectoryCache.deleteCachedGroupsNotIn(GroupType groupType, java.util.List<? extends Group> ldapGroups, java.util.Date syncStartDate)
           
protected  void AbstractCacheRefresher.synchroniseMemberships(GroupType groupType, java.util.List<? extends Group> remoteGroups, DirectoryCache directoryCache)
           
 

Uses of Group in com.atlassian.crowd.directory.ldap.mapper.entity
 

Methods in com.atlassian.crowd.directory.ldap.mapper.entity with parameters of type Group
 javax.naming.directory.Attributes LDAPGroupAttributesMapper.mapAttributesFromGroup(Group group)
          Creates an LDAP Attributes object containing the information in the Group object.
 

Uses of Group in com.atlassian.crowd.embedded.core.util
 

Methods in com.atlassian.crowd.embedded.core.util that return types with arguments of type Group
static MembershipQuery<Group> ConversionUtils.toModelGroupMembershipQuery(MembershipQuery embeddedQuery)
           
static GroupQuery<Group> ConversionUtils.toModelGroupQuery(GroupQuery embeddedQuery)
           
 

Methods in com.atlassian.crowd.embedded.core.util with parameters of type Group
static Group ConversionUtils.toEmbeddedGroup(Group modelGroup)
          Converts a directory-specific model group into a directory-agnostic embedded/application group.
 

Method parameters in com.atlassian.crowd.embedded.core.util with type arguments of type Group
static java.util.List<Group> ConversionUtils.toEmbeddedGroups(java.util.List<Group> modelGroups)
          Converts a directory-specific model groups into a directory-agnostic embedded/application groups.
 

Uses of Group in com.atlassian.crowd.embedded.spi
 

Methods in com.atlassian.crowd.embedded.spi that return Group
 Group GroupDao.add(Group group)
           
 Group GroupDao.addLocal(Group group)
           
 Group GroupDao.rename(Group group, java.lang.String newName)
           
 Group GroupDao.update(Group group)
           
 

Methods in com.atlassian.crowd.embedded.spi that return types with arguments of type Group
 BatchResult<Group> GroupDao.addAll(java.util.Set<? extends Group> groups)
          Bulk add of groups.
 

Methods in com.atlassian.crowd.embedded.spi with parameters of type Group
 Group GroupDao.add(Group group)
           
 Group GroupDao.addLocal(Group group)
           
 void GroupDao.remove(Group group)
           
 void GroupDao.removeAttribute(Group group, java.lang.String attributeName)
           
 Group GroupDao.rename(Group group, java.lang.String newName)
           
 void GroupDao.storeAttributes(Group group, java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes)
           
 Group GroupDao.update(Group group)
           
 

Method parameters in com.atlassian.crowd.embedded.spi with type arguments of type Group
 BatchResult<Group> GroupDao.addAll(java.util.Set<? extends Group> groups)
          Bulk add of groups.
 

Uses of Group in com.atlassian.crowd.event.group
 

Methods in com.atlassian.crowd.event.group that return Group
 Group GroupUpdatedEvent.getGroup()
           
 Group GroupCreatedEvent.getGroup()
           
 

Constructors in com.atlassian.crowd.event.group with parameters of type Group
GroupAttributeDeletedEvent(java.lang.Object source, Directory directory, Group group, java.lang.String attributeName)
           
GroupAttributeStoredEvent(java.lang.Object source, Directory directory, Group group, java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes)
           
GroupCreatedEvent(java.lang.Object source, Directory directory, Group group)
           
GroupUpdatedEvent(java.lang.Object source, Directory directory, Group group)
           
 

Uses of Group in com.atlassian.crowd.event.remote.group
 

Constructors in com.atlassian.crowd.event.remote.group with parameters of type Group
RemoteGroupCreatedEvent(java.lang.Object source, long directoryID, Group group)
           
RemoteGroupCreatedOrUpdatedEvent(java.lang.Object source, long directoryID, Group group)
           
RemoteGroupUpdatedEvent(java.lang.Object source, long directoryID, Group group)
           
 

Uses of Group in com.atlassian.crowd.event.role
 

Methods in com.atlassian.crowd.event.role that return Group
 Group RoleUpdatedEvent.getRole()
           
 Group RoleCreatedEvent.getRole()
           
 

Constructors in com.atlassian.crowd.event.role with parameters of type Group
RoleCreatedEvent(java.lang.Object source, Directory directory, Group role)
           
RoleUpdatedEvent(java.lang.Object source, Directory directory, Group role)
           
 

Uses of Group in com.atlassian.crowd.exception
 

Methods in com.atlassian.crowd.exception that return Group
 Group InvalidGroupException.getGroup()
           
 

Methods in com.atlassian.crowd.exception with parameters of type Group
 void InvalidGroupException.setGroup(Group group)
           
 

Constructors in com.atlassian.crowd.exception with parameters of type Group
InvalidGroupException(Group group, java.lang.String message)
           
InvalidGroupException(Group group, java.lang.String message, java.lang.Throwable cause)
           
InvalidGroupException(Group group, java.lang.Throwable cause)
           
InvalidRoleException(Group legacyRole, java.lang.String message)
           
 

Uses of Group in com.atlassian.crowd.integration.rest.entity
 

Classes in com.atlassian.crowd.integration.rest.entity that implement Group
 class GroupEntity
          Represents a Group entity.
 

Methods in com.atlassian.crowd.integration.rest.entity with parameters of type Group
 int GroupEntity.compareTo(Group o)
           
 

Uses of Group in com.atlassian.crowd.integration.rest.service
 

Methods in com.atlassian.crowd.integration.rest.service that return Group
 Group RestCrowdClient.getGroup(java.lang.String name)
          Get a group by name.
 

Methods in com.atlassian.crowd.integration.rest.service that return types with arguments of type Group
 java.util.List<Group> RestCrowdClient.getChildGroupsOfGroup(java.lang.String groupName, int startIndex, int maxResults)
           
 java.util.List<Group> RestCrowdClient.getGroupsForNestedUser(java.lang.String userName, int startIndex, int maxResults)
           
 java.util.List<Group> RestCrowdClient.getGroupsForUser(java.lang.String userName, int startIndex, int maxResults)
           
 java.util.List<Group> RestCrowdClient.getNestedChildGroupsOfGroup(java.lang.String groupName, int startIndex, int maxResults)
           
 java.util.List<Group> RestCrowdClient.getParentGroupsForGroup(java.lang.String groupName, int startIndex, int maxResults)
           
 java.util.List<Group> RestCrowdClient.getParentGroupsForNestedGroup(java.lang.String groupName, int startIndex, int maxResults)
           
 java.util.List<Group> RestCrowdClient.searchGroups(SearchRestriction searchRestriction, int startIndex, int maxResults)
           
 

Methods in com.atlassian.crowd.integration.rest.service with parameters of type Group
 void RestCrowdClient.addGroup(Group group)
           
 void RestCrowdClient.updateGroup(Group group)
           
 

Uses of Group in com.atlassian.crowd.integration.rest.util
 

Methods in com.atlassian.crowd.integration.rest.util that return types with arguments of type Group
static java.util.List<Group> EntityTranslator.toGroupList(GroupEntityList groupEntityList)
          Transforms GroupEntityList to a list of groups.
 

Methods in com.atlassian.crowd.integration.rest.util with parameters of type Group
static GroupEntity EntityTranslator.toGroupEntity(Group group)
          Translates a Group to a GroupEntity.
static GroupEntity EntityTranslator.toGroupEntity(Group group, Attributes attributes)
          Translates a Group with Attributes to a GroupEntity.
 

Uses of Group in com.atlassian.crowd.manager.application
 

Methods in com.atlassian.crowd.manager.application that return Group
 Group ApplicationService.addGroup(Application application, GroupTemplate group)
          Adds the group to ALL the active permissible directories.
 Group TranslatingApplicationService.addGroup(Application application, GroupTemplate group)
           
 Group ApplicationServiceGeneric.addGroup(Application application, GroupTemplate group)
           
 Group ApplicationService.findGroupByName(Application application, java.lang.String name)
          Returns the first group with the matching groupname from all the active directories assigned to the application.
 Group TranslatingApplicationService.findGroupByName(Application application, java.lang.String name)
           
 Group ApplicationServiceGeneric.findGroupByName(Application application, java.lang.String name)
           
 Group ApplicationService.updateGroup(Application application, GroupTemplate group)
          Updates the group in ALL the active permissible directories.
 Group TranslatingApplicationService.updateGroup(Application application, GroupTemplate group)
           
 Group ApplicationServiceGeneric.updateGroup(Application application, GroupTemplate group)
           
 

Uses of Group in com.atlassian.crowd.manager.directory
 

Methods in com.atlassian.crowd.manager.directory that return Group
 Group DirectoryManager.addGroup(long directoryId, GroupTemplate group)
          Adds a Group to the directory specified by the passed in directoryId.
 Group DirectoryManagerGeneric.addGroup(long directoryId, GroupTemplate group)
           
 Group DirectoryManager.findGroupByName(long directoryId, java.lang.String groupName)
          Returns the group matching the supplied groupName in the directory specified by the passed in directoryId..
 Group DirectoryManagerGeneric.findGroupByName(long directoryId, java.lang.String groupName)
           
 Group DirectoryManager.renameGroup(long directoryId, java.lang.String oldGroupname, java.lang.String newGroupname)
          Renames a group in the directory specified by the passed in directoryId.
 Group DirectoryManagerGeneric.renameGroup(long directoryId, java.lang.String oldGroupname, java.lang.String newGroupname)
           
 Group DirectoryManager.updateGroup(long directoryId, GroupTemplate group)
          Updates a group with the supplied template and returns the updated group retrieved from the directory specified by the passed in directoryId.
 Group DirectoryManagerGeneric.updateGroup(long directoryId, GroupTemplate group)
           
 

Methods in com.atlassian.crowd.manager.directory that return types with arguments of type Group
 BulkAddResult<Group> DirectoryManager.addAllGroups(long directoryId, java.util.Collection<GroupTemplate> groups, boolean overwrite)
          Will add a collection of Group to the directory specified by the passed in directoryId param.
 BulkAddResult<Group> DirectoryManagerGeneric.addAllGroups(long directoryId, java.util.Collection<GroupTemplate> groups, boolean overwrite)
           
 

Uses of Group in com.atlassian.crowd.migration.legacy
 

Method parameters in com.atlassian.crowd.migration.legacy with type arguments of type Group
protected  java.util.Set<InternalMembership> RoleMapper.getMemberships(org.dom4j.Element roleElement, LegacyImportDataHolder importData, BatchResultWithIdReferences<Group> roleImportResults)
           
protected  java.util.Set<InternalMembership> GroupMapper.getMemberships(org.dom4j.Element groupElement, LegacyImportDataHolder importData, BatchResultWithIdReferences<Group> groupImportResults)
           
 

Uses of Group in com.atlassian.crowd.migration.legacy.database
 

Method parameters in com.atlassian.crowd.migration.legacy.database with type arguments of type Group
protected  java.util.Set<InternalMembership> RoleMapper.importMembershipsFromDatabase(LegacyImportDataHolder importData, BatchResultWithIdReferences<Group> roleImportResults)
           
protected  java.util.Set<InternalMembership> GroupMapper.importMembershipsFromDatabase(LegacyImportDataHolder importData, BatchResultWithIdReferences<Group> groupImportResults)
           
 

Uses of Group in com.atlassian.crowd.model.group
 

Subinterfaces of Group in com.atlassian.crowd.model.group
 interface GroupWithAttributes
           
 interface InternalDirectoryGroup
          Extends the Group interface with "isLocal".
 interface TimestampedGroup
          Extends the Group interface with "updated date" and "created date".
 

Classes in com.atlassian.crowd.model.group that implement Group
 class DelegatingGroupWithAttributes
          Implementation of GroupWithAttributes that simply delegates to an underlying Group and Attributes object.
 class GroupTemplate
          A publicly mutable Group implementation.
 class GroupTemplateWithAttributes
           
 class InternalGroup
           
 class InternalGroupWithAttributes
           
 class LDAPGroupWithAttributes
           
 

Fields in com.atlassian.crowd.model.group with type parameters of type Group
static java.util.Comparator<Group> GroupComparator.GROUP_COMPARATOR
          Singleton instance of Comparator
 

Methods in com.atlassian.crowd.model.group with parameters of type Group
 int GroupComparator.compare(Group group1, Group group2)
           
 int InternalGroupWithAttributes.compareTo(Group o)
           
 int InternalGroup.compareTo(Group o)
           
 int GroupTemplate.compareTo(Group other)
           
 int LDAPGroupWithAttributes.compareTo(Group group)
           
 int DelegatingGroupWithAttributes.compareTo(Group other)
           
static int GroupComparator.compareTo(Group group1, Group group2)
           
static boolean GroupComparator.equal(Group group1, Group group2)
          Checks whether the two Group objects are equal according to the contract of the Group interface.
static boolean GroupComparator.equalsObject(Group group, java.lang.Object o)
           
static int GroupComparator.hashCode(Group group)
           
 void InternalGroup.updateDetailsFrom(Group group)
           
 

Constructors in com.atlassian.crowd.model.group with parameters of type Group
DelegatingGroupWithAttributes(Group group, Attributes attributes)
           
GroupTemplate(Group group)
          Build a template from an existing group.
GroupTemplateWithAttributes(Group group)
           
InternalGroup(Group group, Directory directory)
           
 

Uses of Group in com.atlassian.crowd.plugin.rest.util
 

Methods in com.atlassian.crowd.plugin.rest.util with parameters of type Group
static GroupEntity EntityTranslator.toGroupEntity(Group group, Attributes attributes, com.atlassian.plugins.rest.common.Link groupLink)
          Translates a Group with Attributes to a GroupEntity.
static GroupEntity EntityTranslator.toGroupEntity(Group group, com.atlassian.plugins.rest.common.Link groupLink)
          Translates a Group to a GroupEntity.
static GroupEntity EntityTranslator.toGroupEntity(Group group, java.net.URI baseURI)
          Translates a Group to a GroupEntity.
 

Method parameters in com.atlassian.crowd.plugin.rest.util with type arguments of type Group
static GroupEntityList EntityTranslator.toGroupEntities(java.util.List<Group> groups, java.net.URI baseURI)
          Translates a list of Groups to a list of GroupEntities.
 

Uses of Group in com.atlassian.crowd.security.demo.action.group
 

Methods in com.atlassian.crowd.security.demo.action.group that return Group
 Group ViewGroup.getGroup()
           
 Group AddGroup.getGroup()
           
 

Uses of Group in com.atlassian.crowd.security.demo.action.user
 

Fields in com.atlassian.crowd.security.demo.action.user with type parameters of type Group
protected  java.util.List<Group> ViewUser.subscribedGroups
           
protected  java.util.List<Group> ViewUser.unsubscribedGroups
           
 

Methods in com.atlassian.crowd.security.demo.action.user that return types with arguments of type Group
protected  java.util.List<Group> ViewUser.processGroups()
           
 

Uses of Group in com.atlassian.crowd.security.demo.model
 

Classes in com.atlassian.crowd.security.demo.model that implement Group
 class DemoGroup
           
 

Methods in com.atlassian.crowd.security.demo.model with parameters of type Group
 int DemoGroup.compareTo(Group o)
           
 

Uses of Group in com.atlassian.crowd.service.client
 

Methods in com.atlassian.crowd.service.client that return Group
 Group CrowdClient.getGroup(java.lang.String name)
          Gets a group by name.
 

Methods in com.atlassian.crowd.service.client that return types with arguments of type Group
 java.util.List<Group> CrowdClient.getChildGroupsOfGroup(java.lang.String groupName, int startIndex, int maxResults)
          Searches for groups who are direct members of a group.
 java.util.List<Group> CrowdClient.getGroupsForNestedUser(java.lang.String userName, int startIndex, int maxResults)
          Searches for groups that a user is a nested member of.
 java.util.List<Group> CrowdClient.getGroupsForUser(java.lang.String userName, int startIndex, int maxResults)
          Searches for groups that a user is a direct member of.
 java.util.List<Group> CrowdClient.getNestedChildGroupsOfGroup(java.lang.String groupName, int startIndex, int maxResults)
          Searches for groups who are nested members of a group.
 java.util.List<Group> CrowdClient.getParentGroupsForGroup(java.lang.String groupName, int startIndex, int maxResults)
          Searches for groups that a group is a direct member of.
 java.util.List<Group> CrowdClient.getParentGroupsForNestedGroup(java.lang.String groupName, int startIndex, int maxResults)
          Searches for groups that a group is a nested member of.
 java.util.List<Group> CrowdClient.searchGroups(SearchRestriction searchRestriction, int startIndex, int maxResults)
          Searches for groups matching the following criteria.
 

Methods in com.atlassian.crowd.service.client with parameters of type Group
 void CrowdClient.addGroup(Group group)
          Adds a group to the remote Crowd server.
 void CrowdClient.updateGroup(Group group)
          Updates a group on the remote Crowd server.
 

Uses of Group in com.atlassian.crowd.service.soap
 

Methods in com.atlassian.crowd.service.soap with parameters of type Group
static SOAPGroup ObjectTranslator.processGroup(Group group, java.util.List<java.lang.String> nestedUserMembers)
           
static SOAPNestableGroup ObjectTranslator.processNestableGroup(Group group, java.util.List<java.lang.String> nestedGroupMembers)
           
static SOAPRole ObjectTranslator.processRole(Group role, java.util.List<java.lang.String> directMemberNames)
           
 



Copyright © 2010 Atlassian. All Rights Reserved.