Uses of Class
com.atlassian.crowd.exception.GroupNotFoundException

Packages that use GroupNotFoundException
com.atlassian.crowd.dao.group   
com.atlassian.crowd.dao.membership   
com.atlassian.crowd.directory   
com.atlassian.crowd.directory.hybrid   
com.atlassian.crowd.embedded.api   
com.atlassian.crowd.embedded.core   
com.atlassian.crowd.embedded.spi   
com.atlassian.crowd.integration.rest.service   
com.atlassian.crowd.manager.application   
com.atlassian.crowd.manager.directory   
com.atlassian.crowd.plugin.rest.exception.mapper   
com.atlassian.crowd.service   
com.atlassian.crowd.service.client   
com.atlassian.crowd.service.soap.client   
 

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

Methods in com.atlassian.crowd.dao.group that throw GroupNotFoundException
 InternalGroup GroupDAOHibernate.add(Group group)
           
 InternalGroup GroupDAOHibernate.addLocal(Group group)
           
 InternalGroup InternalGroupDao.findByName(long directoryId, java.lang.String groupName)
           
 InternalGroup GroupDAOHibernate.findByName(long directoryId, java.lang.String groupName)
           
 InternalGroupWithAttributes GroupDAOHibernate.findByNameWithAttributes(long directoryId, java.lang.String groupName)
           
 void GroupDAOHibernate.remove(Group group)
           
 void GroupDAOHibernate.removeAllGroups(long directoryId, java.util.Set<java.lang.String> groupNames)
           
 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)
           
 

Uses of GroupNotFoundException in com.atlassian.crowd.dao.membership
 

Methods in com.atlassian.crowd.dao.membership that throw GroupNotFoundException
 java.util.List<java.lang.String> MembershipDAOHibernate.addAllUsersToGroup(long directoryId, java.util.Collection<java.lang.String> userNames, java.lang.String groupName)
           
 void MembershipDAOHibernate.addGroupToGroup(long directoryId, java.lang.String childGroup, java.lang.String parentGroup)
           
 void MembershipDAOHibernate.addUserToGroup(long directoryId, java.lang.String username, java.lang.String groupName)
           
 void MembershipDAOHibernate.removeUserFromGroup(long directoryId, java.lang.String username, java.lang.String groupName)
           
 

Uses of GroupNotFoundException in com.atlassian.crowd.directory
 

Methods in com.atlassian.crowd.directory that throw GroupNotFoundException
 java.util.Collection<java.lang.String> InternalDirectory.addAllUsersToGroup(java.util.Set<java.lang.String> userNames, java.lang.String groupName)
           
 java.util.Collection<java.lang.String> CachingDirectory.addAllUsersToGroup(java.util.Set<java.lang.String> userNames, java.lang.String groupName)
           
 java.util.Collection<java.lang.String> InternalRemoteDirectory.addAllUsersToGroup(java.util.Set<java.lang.String> userNames, java.lang.String groupName)
           
 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 DbCachingRemoteDirectory.addGroup(GroupTemplate group)
           
 void RemoteCrowdDirectory.addGroupToGroup(java.lang.String childGroup, java.lang.String parentGroup)
           
 void DelegatedAuthenticationDirectory.addGroupToGroup(java.lang.String childGroup, java.lang.String parentGroup)
           
 void AbstractInternalDirectory.addGroupToGroup(java.lang.String childGroup, java.lang.String parentGroup)
           
 void RemoteDirectory.addGroupToGroup(java.lang.String childGroup, java.lang.String parentGroup)
          Adds a group as a member of a parent group.
 void Rfc2307.addGroupToGroup(java.lang.String childGroup, java.lang.String parentGroup)
           
 void RFC4519Directory.addGroupToGroup(java.lang.String childGroup, java.lang.String parentGroup)
           
 void DbCachingRemoteDirectory.addGroupToGroup(java.lang.String childGroup, java.lang.String parentGroup)
           
 void RemoteCrowdDirectory.addUserToGroup(java.lang.String username, java.lang.String groupName)
           
 void DelegatedAuthenticationDirectory.addUserToGroup(java.lang.String username, java.lang.String groupName)
           
 void AbstractInternalDirectory.addUserToGroup(java.lang.String username, java.lang.String groupName)
           
 void RemoteDirectory.addUserToGroup(java.lang.String username, java.lang.String groupName)
          Adds a user as a member of a group.
 void Rfc2307.addUserToGroup(java.lang.String username, java.lang.String groupName)
           
 void RFC4519Directory.addUserToGroup(java.lang.String username, java.lang.String groupName)
           
 void DbCachingRemoteDirectory.addUserToGroup(java.lang.String username, java.lang.String groupName)
           
protected  javax.naming.ldap.LdapName SpringLDAPConnector.asLdapGroupName(java.lang.String dn, java.lang.String groupName)
          Convenience method to convert group DN to LdapName, throwing a GNFE with the supplied group name if unable to construct the LdapName.
protected
<T extends LDAPDirectoryEntity>
javax.naming.ldap.LdapName
SpringLDAPConnector.asLdapName(java.lang.String dn, java.lang.String entityName, java.lang.Class<T> entityClass)
          This method is required to wrap DN's into LdapNames as spring-ldap doesn't correctly handle operations with String dn arguments.
<T extends LDAPDirectoryEntity>
T
SpringLDAPConnector.findEntityByDN(java.lang.String dn, java.lang.Class<T> entityClass)
           
<T extends LDAPDirectoryEntity>
T
LDAPDirectory.findEntityByDN(java.lang.String dn, java.lang.Class<T> entityClass)
          Finds a directory entity (principal, group or role) by their distinguished name.
protected
<T extends LDAPDirectoryEntity>
T
SpringLDAPConnector.findEntityByDN(java.lang.String dn, java.lang.String baseDN, java.lang.String filter, org.springframework.ldap.core.ContextMapper contextMapper, java.lang.Class<T> entityClass)
           
 Group RemoteCrowdDirectory.findGroupByName(java.lang.String name)
           
 Group DelegatedAuthenticationDirectory.findGroupByName(java.lang.String name)
           
 InternalDirectoryGroup AbstractInternalDirectory.findGroupByName(java.lang.String name)
           
 Group RemoteDirectory.findGroupByName(java.lang.String name)
          Finds the group that matches the supplied name.
 InternalDirectoryGroup InternalRemoteDirectory.findGroupByName(java.lang.String name)
           
 LDAPGroupWithAttributes SpringLDAPConnector.findGroupByName(java.lang.String name)
           
 Group DbCachingRemoteDirectory.findGroupByName(java.lang.String name)
           
protected  LDAPGroupWithAttributes SpringLDAPConnector.findGroupByNameAndType(java.lang.String name, GroupType groupType)
           
 GroupWithAttributes RemoteCrowdDirectory.findGroupWithAttributesByName(java.lang.String name)
           
 GroupWithAttributes DelegatedAuthenticationDirectory.findGroupWithAttributesByName(java.lang.String name)
           
 GroupWithAttributes AbstractInternalDirectory.findGroupWithAttributesByName(java.lang.String name)
           
 GroupWithAttributes RemoteDirectory.findGroupWithAttributesByName(java.lang.String name)
          Finds the group that matches the supplied name.
 LDAPGroupWithAttributes SpringLDAPConnector.findGroupWithAttributesByName(java.lang.String name)
           
 GroupWithAttributes DbCachingRemoteDirectory.findGroupWithAttributesByName(java.lang.String name)
           
 void AbstractInternalDirectory.removeAllGroups(java.util.Set<java.lang.String> groupNames)
           
 void InternalRemoteDirectory.removeAllGroups(java.util.Set<java.lang.String> groupNames)
           
 void RemoteCrowdDirectory.removeGroup(java.lang.String groupname)
           
 void DelegatedAuthenticationDirectory.removeGroup(java.lang.String name)
           
 void AbstractInternalDirectory.removeGroup(java.lang.String name)
           
 void RemoteDirectory.removeGroup(java.lang.String name)
          Removes the group that matches the supplied name.
 void SpringLDAPConnector.removeGroup(java.lang.String name)
           
 void Rfc2307.removeGroup(java.lang.String name)
           
 void DbCachingRemoteDirectory.removeGroup(java.lang.String name)
           
 void RemoteCrowdDirectory.removeGroupAttributes(java.lang.String groupName, java.lang.String attributeName)
           
 void DelegatedAuthenticationDirectory.removeGroupAttributes(java.lang.String groupName, java.lang.String attributeName)
           
 void AbstractInternalDirectory.removeGroupAttributes(java.lang.String groupName, java.lang.String attributeName)
           
 void RemoteDirectory.removeGroupAttributes(java.lang.String groupName, java.lang.String attributeName)
          Removes all the values for a single attribute key for a group.
 void SpringLDAPConnector.removeGroupAttributes(java.lang.String groupName, java.lang.String attributeName)
           
 void DbCachingRemoteDirectory.removeGroupAttributes(java.lang.String groupName, java.lang.String attributeName)
           
 void RemoteCrowdDirectory.removeGroupFromGroup(java.lang.String childGroup, java.lang.String parentGroup)
           
 void DelegatedAuthenticationDirectory.removeGroupFromGroup(java.lang.String childGroup, java.lang.String parentGroup)
           
 void AbstractInternalDirectory.removeGroupFromGroup(java.lang.String childGroup, java.lang.String parentGroup)
           
 void RemoteDirectory.removeGroupFromGroup(java.lang.String childGroup, java.lang.String parentGroup)
          Removes a group as a member of a parent group.
 void Rfc2307.removeGroupFromGroup(java.lang.String childGroup, java.lang.String parentGroup)
           
 void RFC4519Directory.removeGroupFromGroup(java.lang.String childGroup, java.lang.String parentGroup)
           
 void DbCachingRemoteDirectory.removeGroupFromGroup(java.lang.String childGroup, java.lang.String parentGroup)
           
 void RemoteCrowdDirectory.removeUserFromGroup(java.lang.String username, java.lang.String groupName)
           
 void DelegatedAuthenticationDirectory.removeUserFromGroup(java.lang.String username, java.lang.String groupName)
           
 void AbstractInternalDirectory.removeUserFromGroup(java.lang.String username, java.lang.String groupName)
           
 void RemoteDirectory.removeUserFromGroup(java.lang.String username, java.lang.String groupName)
          Removes a user as a member of a group.
 void Rfc2307.removeUserFromGroup(java.lang.String username, java.lang.String groupName)
           
 void RFC4519Directory.removeUserFromGroup(java.lang.String username, java.lang.String groupName)
           
 void DbCachingRemoteDirectory.removeUserFromGroup(java.lang.String username, java.lang.String groupName)
           
 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)
           
 void RemoteCrowdDirectory.storeGroupAttributes(java.lang.String groupName, java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes)
           
 void DelegatedAuthenticationDirectory.storeGroupAttributes(java.lang.String groupName, java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes)
           
 void AbstractInternalDirectory.storeGroupAttributes(java.lang.String groupName, java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes)
           
 void RemoteDirectory.storeGroupAttributes(java.lang.String groupName, java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes)
          Adds or updates a group's attributes with the new Map of attribute values in the directory specified by the passed in directoryId.
 void SpringLDAPConnector.storeGroupAttributes(java.lang.String groupName, java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes)
           
 void DbCachingRemoteDirectory.storeGroupAttributes(java.lang.String groupName, java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes)
           
 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)
           
 

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

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

Uses of GroupNotFoundException in com.atlassian.crowd.embedded.api
 

Methods in com.atlassian.crowd.embedded.api that throw GroupNotFoundException
 void CrowdAdminService.addGroupToGroup(Group childGroup, Group parentGroup)
          Adds a group as a member of a parent group.
 void CrowdAdminService.addUserToGroup(User user, Group group)
          Adds a user as a member of a group.
 boolean CrowdService.isGroupMemberOfGroup(Group childGroup, Group parentGroup)
          Returns true if the childGroup is a direct or indirect (nested) member of the parentGroup.
 boolean CrowdService.isUserMemberOfGroup(java.lang.String userName, java.lang.String groupName)
          Returns true if the user is a direct or indirect (nested) member of the group.
 boolean CrowdService.isUserMemberOfGroup(User user, Group group)
          Returns true if the user is a direct or indirect (nested) member of the group.
 void CrowdAdminService.removeAllGroupAttributes(Group group)
          Removes all group attributes.
 boolean CrowdAdminService.removeGroup(Group group)
          Removes the group that matches the supplied name.
 void CrowdAdminService.removeGroupAttribute(Group group, java.lang.String attributeName)
          Removes all the values for a single attribute key for a group.
 boolean CrowdAdminService.removeGroupFromGroup(Group childGroup, Group parentGroup)
          Removes a group as a member of a parent group.
 boolean CrowdAdminService.removeUserFromGroup(User user, Group group)
          Removes a user as a member of a group.
 Group CrowdAdminService.renameGroup(java.lang.String oldName, java.lang.String newName)
          Renames a group.
 void CrowdAdminService.setGroupAttribute(Group group, java.lang.String attributeName, java.util.Set<java.lang.String> attributeValues)
          Adds or updates a group's attributes with the new attributes.
 void CrowdAdminService.setGroupAttribute(Group group, java.lang.String attributeName, java.lang.String attributeValue)
          Adds or updates a group's attributes with the new attributes.
 Group CrowdAdminService.updateGroup(Group group)
          Updates the group.
 

Uses of GroupNotFoundException in com.atlassian.crowd.embedded.core
 

Methods in com.atlassian.crowd.embedded.core that throw GroupNotFoundException
 void CrowdAdminServiceImpl.addGroupToGroup(Group childGroup, Group parentGroup)
           
 void CrowdAdminServiceImpl.addUserToGroup(User user, Group group)
           
 boolean CrowdServiceImpl.isGroupMemberOfGroup(Group childGroup, Group parentGroup)
           
 boolean CrowdServiceImpl.isUserMemberOfGroup(java.lang.String userName, java.lang.String groupName)
           
 boolean CrowdServiceImpl.isUserMemberOfGroup(User user, Group group)
           
 void CrowdAdminServiceImpl.removeAllGroupAttributes(Group group)
           
 boolean CrowdAdminServiceImpl.removeGroup(Group group)
           
 void CrowdAdminServiceImpl.removeGroupAttribute(Group group, java.lang.String attributeName)
           
 boolean CrowdAdminServiceImpl.removeGroupFromGroup(Group childGroup, Group parentGroup)
           
 boolean CrowdAdminServiceImpl.removeUserFromGroup(User user, Group group)
           
 Group CrowdAdminServiceImpl.renameGroup(java.lang.String oldName, java.lang.String newName)
           
 void CrowdAdminServiceImpl.setGroupAttribute(Group group, java.lang.String attributeName, java.util.Set<java.lang.String> attributeValues)
           
 void CrowdAdminServiceImpl.setGroupAttribute(Group group, java.lang.String attributeName, java.lang.String attributeValue)
           
 Group CrowdAdminServiceImpl.updateGroup(Group group)
           
 

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

Methods in com.atlassian.crowd.embedded.spi that throw GroupNotFoundException
 Group GroupDao.add(Group group)
           
 java.util.List<java.lang.String> MembershipDao.addAllUsersToGroup(long directoryId, java.util.Collection<java.lang.String> userNames, java.lang.String groupName)
           
 void MembershipDao.addGroupToGroup(long directoryId, java.lang.String childGroup, java.lang.String parentGroup)
           
 Group GroupDao.addLocal(Group group)
           
 void MembershipDao.addUserToGroup(long directoryId, java.lang.String userName, java.lang.String groupName)
           
 InternalDirectoryGroup GroupDao.findByName(long directoryId, java.lang.String name)
           
 GroupWithAttributes GroupDao.findByNameWithAttributes(long directoryId, java.lang.String name)
           
 void GroupDao.remove(Group group)
           
 void GroupDao.removeAllGroups(long directoryId, java.util.Set<java.lang.String> groupNames)
           
 void GroupDao.removeAttribute(Group group, java.lang.String attributeName)
           
 void MembershipDao.removeGroupFromGroup(long directoryId, java.lang.String childGroup, java.lang.String parentGroup)
           
 void MembershipDao.removeUserFromGroup(long directoryId, java.lang.String userName, java.lang.String groupName)
           
 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)
           
 

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

Methods in com.atlassian.crowd.integration.rest.service that throw GroupNotFoundException
 void RestCrowdClient.addGroupToGroup(java.lang.String childGroup, java.lang.String parentGroup)
           
 void RestCrowdClient.addUserToGroup(java.lang.String username, java.lang.String groupName)
           
 Group RestCrowdClient.getGroup(java.lang.String name)
          Get a group by name.
 GroupWithAttributes RestCrowdClient.getGroupWithAttributes(java.lang.String name)
           
 void RestCrowdClient.removeGroup(java.lang.String groupName)
           
 void RestCrowdClient.removeGroupAttributes(java.lang.String groupName, java.lang.String attributeName)
           
 void RestCrowdClient.removeGroupFromGroup(java.lang.String childGroup, java.lang.String parentGroup)
           
 void RestCrowdClient.removeUserFromGroup(java.lang.String username, java.lang.String groupName)
           
 void RestCrowdClient.storeGroupAttributes(java.lang.String groupName, java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes)
           
 void RestCrowdClient.updateGroup(Group group)
           
 

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

Methods in com.atlassian.crowd.manager.application that throw GroupNotFoundException
 void ApplicationService.addGroupToGroup(Application application, java.lang.String childGroupName, java.lang.String parentGroupName)
          Makes groups matching the given name (childGroupName) direct members of the group (parentGroupName) across ALL active directories.
 void TranslatingApplicationService.addGroupToGroup(Application application, java.lang.String childGroupName, java.lang.String parentGroupName)
           
 void ApplicationServiceGeneric.addGroupToGroup(Application application, java.lang.String childGroupName, java.lang.String parentGroupName)
           
 void ApplicationService.addUserToGroup(Application application, java.lang.String username, java.lang.String groupName)
          Makes the primary user of the given username a direct member of the group.
 void TranslatingApplicationService.addUserToGroup(Application application, java.lang.String username, java.lang.String groupName)
           
 void ApplicationServiceGeneric.addUserToGroup(Application application, java.lang.String username, java.lang.String groupName)
           
 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)
           
 GroupWithAttributes ApplicationService.findGroupWithAttributesByName(Application application, java.lang.String name)
          Returns the first group with the matching groupname from all the active directories assigned to the application.
 GroupWithAttributes TranslatingApplicationService.findGroupWithAttributesByName(Application application, java.lang.String name)
           
 void ApplicationService.removeGroup(Application application, java.lang.String group)
          Removes ALL groups from each of the application's assigned directories that are active.
 void TranslatingApplicationService.removeGroup(Application application, java.lang.String group)
           
 void ApplicationService.removeGroupAttributes(Application application, java.lang.String groupname, java.lang.String attributeName)
          Removes a group's attribute values for all active permissible directories assigned to the application.
 void TranslatingApplicationService.removeGroupAttributes(Application application, java.lang.String groupname, java.lang.String attributeName)
           
 void ApplicationService.removeGroupFromGroup(Application application, java.lang.String childGroup, java.lang.String parentGroup)
          Makes child group matching the given name not members of the parent group across ALL active directories.
 void TranslatingApplicationService.removeGroupFromGroup(Application application, java.lang.String childGroup, java.lang.String parentGroup)
           
 void ApplicationService.removeUserFromGroup(Application application, java.lang.String username, java.lang.String groupName)
          Makes users matching the given name not members of the group across ALL active directories.
 void TranslatingApplicationService.removeUserFromGroup(Application application, java.lang.String username, java.lang.String groupName)
           
 void ApplicationService.storeGroupAttributes(Application application, java.lang.String groupname, java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes)
          Adds or updates a group's attributes with the new Map of attribute values for all active permissible directories assigned to the application.
 void TranslatingApplicationService.storeGroupAttributes(Application application, java.lang.String groupname, java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes)
           
 Group ApplicationService.updateGroup(Application application, GroupTemplate group)
          Updates the group in ALL the active permissible directories.
 Group TranslatingApplicationService.updateGroup(Application application, GroupTemplate group)
           
 

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

Methods in com.atlassian.crowd.manager.directory that throw GroupNotFoundException
 BulkAddResult<java.lang.String> DirectoryManager.addAllUsersToGroup(long directoryID, java.util.Collection<java.lang.String> userNames, java.lang.String groupName)
          A bulk version of DirectoryManager.addUserToGroup(long, String, String).
 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)
           
 void DirectoryManager.addGroupToGroup(long directoryId, java.lang.String childGroup, java.lang.String parentGroup)
          Adds an existing child group as direct member of an existing parent group in the directory specified by the passed in directoryId.
 void DirectoryManager.addUserToGroup(long directoryId, java.lang.String username, java.lang.String groupName)
          Adds an existing user as a direct member of an existing group in the directory specified by the passed in directoryId.
 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)
           
 GroupWithAttributes DirectoryManager.findGroupWithAttributesByName(long directoryId, java.lang.String groupName)
          Returns the group with all attributes matching the supplied groupName in the directory specified by the passed in directoryId..
 GroupWithAttributes DirectoryManagerGeneric.findGroupWithAttributesByName(long directoryId, java.lang.String groupName)
           
 void DirectoryManager.removeGroup(long directoryId, java.lang.String groupName)
          Removes a group matching the supplied groupName in the directory specified by the passed in directoryId.
 void DirectoryManager.removeGroupAttributes(long directoryId, java.lang.String groupName, java.lang.String attributeName)
          Removes a group's attribute values in the directory specified by the passed in directoryId.
 void DirectoryManager.removeGroupFromGroup(long directoryId, java.lang.String childGroup, java.lang.String parentGroup)
          Removes an existing child group from being a direct member of an existing parent group in the directory specified by the passed in directoryId.
 void DirectoryManager.removeUserFromGroup(long directoryId, java.lang.String username, java.lang.String groupName)
          Removes an existing user from being a direct member of an existing group in the directory specified by the passed in directoryId.
 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.
 void DirectoryManager.storeGroupAttributes(long directoryId, java.lang.String groupName, java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes)
          Adds or updates a group's attributes with the new Map of attribute values in the directory specified by the passed in directoryId.
 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.
 

Uses of GroupNotFoundException in com.atlassian.crowd.plugin.rest.exception.mapper
 

Methods in com.atlassian.crowd.plugin.rest.exception.mapper with parameters of type GroupNotFoundException
 javax.ws.rs.core.Response GroupNotFoundExceptionMapper.toResponse(GroupNotFoundException exception)
           
 

Uses of GroupNotFoundException in com.atlassian.crowd.service
 

Methods in com.atlassian.crowd.service that throw GroupNotFoundException
 void GroupMembershipManager.addMembership(java.lang.String userName, java.lang.String groupName)
          Adds a user identified by userName to the group identified by groupName.
 SOAPGroup GroupManager.getGroup(java.lang.String groupName)
          Given a groupName, returns a SOAPGroup that represents the group.
 java.util.List GroupMembershipManager.getMembers(java.lang.String groupName)
          Obtains a list of all users in the group identified by groupName, sorted naturally.
 void GroupManager.removeGroup(java.lang.String groupName)
          Removes a group from Crowd.
 void GroupMembershipManager.removeMembership(java.lang.String userName, java.lang.String groupName)
          Removes a user identified by userName from the group identified by groupName.
 void GroupManager.updateGroup(SOAPGroup group)
          Updates a group's details in Crowd.
 

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

Methods in com.atlassian.crowd.service.client that throw GroupNotFoundException
 void CrowdClient.addGroupToGroup(java.lang.String childGroup, java.lang.String parentGroup)
          Adds a group to a group.
 void CrowdClient.addUserToGroup(java.lang.String username, java.lang.String groupName)
          Adds a user to a group.
 Group CrowdClient.getGroup(java.lang.String name)
          Gets a group by name.
 GroupWithAttributes CrowdClient.getGroupWithAttributes(java.lang.String name)
          Gets a group with attributes by name.
 void CrowdClient.removeGroup(java.lang.String groupName)
          Removes a group from the remote Crowd server
 void CrowdClient.removeGroupAttributes(java.lang.String groupName, java.lang.String attributeName)
          Removes a group attribute (set) from the server.
 void CrowdClient.removeGroupFromGroup(java.lang.String childGroup, java.lang.String parentGroup)
          Removes a group to a group.
 void CrowdClient.removeUserFromGroup(java.lang.String username, java.lang.String groupName)
          Removes a user from a group.
 void CrowdClient.storeGroupAttributes(java.lang.String groupName, java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes)
          Stores the group's attributes on the remote Crowd server.
 void CrowdClient.updateGroup(Group group)
          Updates a group on the remote Crowd server.
 

Uses of GroupNotFoundException in com.atlassian.crowd.service.soap.client
 

Methods in com.atlassian.crowd.service.soap.client that throw GroupNotFoundException
 void SecurityServerClientImpl.addAttributeToGroup(java.lang.String group, SOAPAttribute attribute)
          Adds an attribute to a group that is in the application's assigned directory.
 void SecurityServerClient.addAttributeToGroup(java.lang.String group, SOAPAttribute attribute)
          Adds an attribute to a group that is in the application's assigned directory.
 void SecurityServerClientImpl.addPrincipalToGroup(java.lang.String principal, java.lang.String group)
          Adds a principal to a group for the application's assigned directory.
 void SecurityServerClient.addPrincipalToGroup(java.lang.String principal, java.lang.String group)
          Adds a principal to a group for the application's assigned directory.
 void SecurityServerClientImpl.addPrincipalToRole(java.lang.String principal, java.lang.String role)
          Adds the principal to a role for the application's assigned directory.
 void SecurityServerClient.addPrincipalToRole(java.lang.String principal, java.lang.String role)
          Adds the principal to a role for the application's assigned directory.
 SOAPGroup SecurityServerClientImpl.findGroupByName(java.lang.String name)
          Find a group by name for the application's assigned directory.
 SOAPGroup SecurityServerClient.findGroupByName(java.lang.String name)
          Find a group by name for the application's assigned directory.
 SOAPGroup SecurityServerClientImpl.findGroupWithAttributesByName(java.lang.String name)
          Find a group by name for the application's assigned directory.
 SOAPGroup SecurityServerClient.findGroupWithAttributesByName(java.lang.String name)
          Find a group by name for the application's assigned directory.
 SOAPRole SecurityServerClientImpl.findRoleByName(java.lang.String name)
          Finds a role by name for the application's assigned directory.
 SOAPRole SecurityServerClient.findRoleByName(java.lang.String name)
          Finds a role by name for the application's assigned directory.
 void SecurityServerClientImpl.removeAttributeFromGroup(java.lang.String group, java.lang.String attribute)
          Removes an attribute from a group that is in the application's assigned directory.
 void SecurityServerClient.removeAttributeFromGroup(java.lang.String group, java.lang.String attribute)
          Removes an attribute from a group that is in the application's assigned directory.
 void SecurityServerClientImpl.removeGroup(java.lang.String group)
          Removes a group from the applciation's assigned directory.
 void SecurityServerClient.removeGroup(java.lang.String group)
          Removes a group from the applciation's assigned directory.
 void SecurityServerClientImpl.removePrincipalFromGroup(java.lang.String principal, java.lang.String group)
          Removes a principal from a group for the application's assigned directory.
 void SecurityServerClient.removePrincipalFromGroup(java.lang.String principal, java.lang.String group)
          Removes a principal from a group for the application's assigned directory.
 void SecurityServerClientImpl.removePrincipalFromRole(java.lang.String principal, java.lang.String role)
          Removes a principal from a role for the application's assigned directory.
 void SecurityServerClient.removePrincipalFromRole(java.lang.String principal, java.lang.String role)
          Removes a principal from a role for the application's assigned directory.
 void SecurityServerClientImpl.removeRole(java.lang.String role)
          Removes a role from the application's assigned directory.
 void SecurityServerClient.removeRole(java.lang.String role)
          Removes a role from the application's assigned directory.
 void SecurityServerClientImpl.updateGroup(java.lang.String group, java.lang.String description, boolean active)
          Updates the first group located from the list of directories assigned to an application Available fields that can be updated are description and active
 void SecurityServerClient.updateGroup(java.lang.String group, java.lang.String description, boolean active)
          Updates the first group located from the list of directories assigned to an application Available fields that can be updated are description and active
 void SecurityServerClientImpl.updateGroupAttribute(java.lang.String name, SOAPAttribute attribute)
          Updates an attribute for a group that is in the application's assigned directory.
 void SecurityServerClient.updateGroupAttribute(java.lang.String name, SOAPAttribute attribute)
          Updates an attribute for a group that is in the application's assigned directory.
 



Copyright © 2010 Atlassian. All Rights Reserved.