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

Packages that use MembershipNotFoundException
com.atlassian.crowd.dao.membership   
com.atlassian.crowd.directory   
com.atlassian.crowd.directory.hybrid   
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.plugin.rest.service.controller   
com.atlassian.crowd.plugin.rest.service.resource   
com.atlassian.crowd.service   
com.atlassian.crowd.service.cache   
com.atlassian.crowd.service.client   
com.atlassian.crowd.service.soap.client   
com.atlassian.crowd.util   
 

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

Methods in com.atlassian.crowd.dao.membership that throw MembershipNotFoundException
 void MembershipDAOHibernate.removeGroupFromGroup(long directoryId, java.lang.String childGroup, java.lang.String parentGroup)
           
 void MembershipDAOHibernate.removeUserFromGroup(long directoryId, java.lang.String username, java.lang.String groupName)
           
 

Uses of MembershipNotFoundException in com.atlassian.crowd.directory
 

Methods in com.atlassian.crowd.directory that throw MembershipNotFoundException
 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)
           
 

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

Methods in com.atlassian.crowd.directory.hybrid that throw MembershipNotFoundException
 void LocalGroupHandler.removeLocalGroupFromLocalGroup(java.lang.String childGroup, java.lang.String parentGroup)
           
 void LocalGroupHandler.removeUserFromLocalGroup(java.lang.String username, java.lang.String groupName)
           
 

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

Methods in com.atlassian.crowd.embedded.spi that throw MembershipNotFoundException
 void MembershipDao.removeGroupFromGroup(long directoryId, java.lang.String childGroup, java.lang.String parentGroup)
          Removes group from the parent group.
 void MembershipDao.removeUserFromGroup(long directoryId, java.lang.String userName, java.lang.String groupName)
          Removes user as a member of the given group.
 

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

Methods in com.atlassian.crowd.integration.rest.service that throw MembershipNotFoundException
 void RestCrowdClient.removeGroupFromGroup(java.lang.String childGroup, java.lang.String parentGroup)
           
 void RestCrowdClient.removeUserFromGroup(java.lang.String username, java.lang.String groupName)
           
 

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

Methods in com.atlassian.crowd.manager.application that throw MembershipNotFoundException
 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 CachingApplicationService.removeGroupFromGroup(Application application, java.lang.String childGroup, java.lang.String parentGroup)
           
 void ApplicationServiceGeneric.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 the primary user of the given username no longer a member of the group on the directory where the primary user resides.
 void TranslatingApplicationService.removeUserFromGroup(Application application, java.lang.String username, java.lang.String groupName)
           
 void CachingApplicationService.removeUserFromGroup(Application application, java.lang.String username, java.lang.String groupName)
           
 void ApplicationServiceGeneric.removeUserFromGroup(Application application, java.lang.String username, java.lang.String groupName)
           
 

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

Methods in com.atlassian.crowd.manager.directory that throw MembershipNotFoundException
 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 DirectoryManagerGeneric.removeGroupFromGroup(long directoryId, java.lang.String childGroup, java.lang.String parentGroup)
           
 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.
 void DirectoryManagerGeneric.removeUserFromGroup(long directoryId, java.lang.String username, java.lang.String groupName)
           
 

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

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

Uses of MembershipNotFoundException in com.atlassian.crowd.plugin.rest.service.controller
 

Methods in com.atlassian.crowd.plugin.rest.service.controller that throw MembershipNotFoundException
 void GroupsController.deleteDirectChildGroup(java.lang.String applicationName, java.lang.String groupName, java.lang.String childGroupName)
          Deletes a child group membership.
 void GroupsController.deleteDirectUser(java.lang.String applicationName, java.lang.String groupName, java.lang.String username)
          Removes the user membership.
 GroupEntity GroupsController.getDirectChildGroup(java.lang.String applicationName, java.lang.String groupName, java.lang.String childGroupName, java.net.URI baseUri)
          Retrieves the group that is a direct child of the specified group.
 GroupEntity UsersController.getDirectGroup(java.lang.String applicationName, java.lang.String userName, java.lang.String groupName, java.net.URI baseUri)
          Returns the specified group that the user is a direct member of.
 GroupEntity GroupsController.getDirectParentGroup(java.lang.String applicationName, java.lang.String groupName, java.lang.String parentGroupName, java.net.URI baseUri)
          Retrieves the group that is a direct parent of the specified group.
 UserEntity GroupsController.getDirectUser(java.lang.String applicationName, java.lang.String groupName, java.lang.String username, java.net.URI baseUri)
          Retrieves the user that is a direct member of the specified group.
 GroupEntity GroupsController.getNestedChildGroup(java.lang.String applicationName, java.lang.String groupName, java.lang.String childGroupName, java.net.URI baseUri)
          Retrieves the group that is a nested child of the specified group.
 GroupEntity UsersController.getNestedGroup(java.lang.String applicationName, java.lang.String userName, java.lang.String groupName, java.net.URI baseUri)
          Returns the specified group that the user is a nested member of.
 GroupEntity GroupsController.getNestedParentGroup(java.lang.String applicationName, java.lang.String groupName, java.lang.String parentGroupName, java.net.URI baseUri)
          Retrieves the group that is a nested parent of the specified group.
 UserEntity GroupsController.getNestedUser(java.lang.String applicationName, java.lang.String groupName, java.lang.String username, java.net.URI baseUri)
          Retrieves the user that is a nested member of the specified group.
 void UsersController.removeUserFromGroup(java.lang.String applicationName, java.lang.String userName, java.lang.String groupName)
          Removes a user from a group.
 

Uses of MembershipNotFoundException in com.atlassian.crowd.plugin.rest.service.resource
 

Methods in com.atlassian.crowd.plugin.rest.service.resource that throw MembershipNotFoundException
 javax.ws.rs.core.Response GroupsResource.deleteDirectChildGroup(java.lang.String groupName, java.lang.String childGroupName)
           
 javax.ws.rs.core.Response GroupsResource.deleteDirectUser(java.lang.String groupName, java.lang.String username)
           
 javax.ws.rs.core.Response GroupsResource.getDirectChildGroups(java.lang.String groupName, java.lang.String childGroupName, int startIndex, int maxResults)
           
 javax.ws.rs.core.Response UsersResource.getDirectGroups(java.lang.String userName, java.lang.String groupName, int maxResults, int startIndex)
          Returns the direct group(s) of the user.
 javax.ws.rs.core.Response GroupsResource.getDirectParentGroups(java.lang.String groupName, java.lang.String childGroupName, int startIndex, int maxResults)
           
 javax.ws.rs.core.Response GroupsResource.getDirectUsers(java.lang.String groupName, java.lang.String username, int startIndex, int maxResults)
           
 javax.ws.rs.core.Response GroupsResource.getNestedChildGroups(java.lang.String groupName, java.lang.String childGroupName, int startIndex, int maxResults)
           
 javax.ws.rs.core.Response UsersResource.getNestedGroups(java.lang.String userName, java.lang.String groupName, int maxResults, int startIndex)
          Returns the nested group(s) of the user.
 javax.ws.rs.core.Response GroupsResource.getNestedParentGroups(java.lang.String groupName, java.lang.String parentGroupName, int startIndex, int maxResults)
           
 javax.ws.rs.core.Response GroupsResource.getNestedUsers(java.lang.String groupName, java.lang.String username, int startIndex, int maxResults)
           
 javax.ws.rs.core.Response UsersResource.removeUserFromGroup(java.lang.String userName, java.lang.String groupName)
          Removes a user from a group.
 

Uses of MembershipNotFoundException in com.atlassian.crowd.service
 

Methods in com.atlassian.crowd.service that throw MembershipNotFoundException
 void GroupMembershipManager.removeMembership(java.lang.String userName, java.lang.String groupName)
          Removes a user identified by userName from the group identified by groupName.
 

Uses of MembershipNotFoundException in com.atlassian.crowd.service.cache
 

Methods in com.atlassian.crowd.service.cache that throw MembershipNotFoundException
 void CachingGroupMembershipManager.removeMembership(java.lang.String userName, java.lang.String groupName)
           
 

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

Methods in com.atlassian.crowd.service.client that throw MembershipNotFoundException
 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.
 

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

Methods in com.atlassian.crowd.service.soap.client that throw MembershipNotFoundException
 void SecurityServerClientImpl.removePrincipalFromGroup(java.lang.String principal, java.lang.String group)
           
 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)
           
 void SecurityServerClient.removePrincipalFromRole(java.lang.String principal, java.lang.String role)
          Removes a principal from a role for the application's assigned directory.
 

Uses of MembershipNotFoundException in com.atlassian.crowd.util
 

Methods in com.atlassian.crowd.util with parameters of type MembershipNotFoundException
static void SoapExceptionTranslator.throwSoapEquivalentCheckedException(MembershipNotFoundException e)
           
 

Methods in com.atlassian.crowd.util that throw MembershipNotFoundException
static void SoapExceptionTranslator.throwEquivalentMembershipNotFoundException(ObjectNotFoundException e)
          Throws the equivalent MembershipNotFoundException from ObjectNotFoundException.
static void SoapExceptionTranslator.throwEquivalentUserOrGroupOrMembershipNotFoundException(ObjectNotFoundException e)
          Throws the equivalent UserNotFoundException, GroupNotFoundException, MembershipNotFoundException from ObjectNotFoundException.
 



Copyright © 2012 Atlassian. All Rights Reserved.