Modifier and Type | Method and Description |
---|---|
void |
MembershipDAOHibernate.removeGroupFromGroup(long directoryId,
String childGroup,
String parentGroup) |
void |
MembershipDAOHibernate.removeUserFromGroup(long directoryId,
String username,
String groupName) |
Modifier and Type | Method and Description |
---|---|
void |
AzureAdDirectory.removeGroupFromGroup(String childGroup,
String parentGroup) |
void |
AuditingDirectoryDecorator.removeGroupFromGroup(String childGroup,
String parentGroup) |
void |
DbCachingRemoteDirectory.removeGroupFromGroup(String childGroup,
String parentGroup) |
void |
Rfc2307.removeGroupFromGroup(String childGroup,
String parentGroup) |
void |
RFC4519Directory.removeGroupFromGroup(String childGroup,
String parentGroup) |
void |
RemoteCrowdDirectory.removeGroupFromGroup(String childGroup,
String parentGroup) |
void |
AbstractForwardingDirectory.removeGroupFromGroup(String childGroup,
String parentGroup) |
void |
AbstractInternalDirectory.removeGroupFromGroup(String childGroup,
String parentGroup) |
void |
MockSimpleRemoteDirectory.removeGroupFromGroup(String childGroup,
String parentGroup) |
void |
RemoteDirectory.removeGroupFromGroup(String childGroup,
String parentGroup)
Removes a group as a member of a parent group.
|
void |
AzureAdDirectory.removeUserFromGroup(String username,
String groupName) |
void |
AuditingDirectoryDecorator.removeUserFromGroup(String username,
String groupName) |
void |
DbCachingRemoteDirectory.removeUserFromGroup(String username,
String groupName) |
void |
MicrosoftActiveDirectory.removeUserFromGroup(String username,
String groupName) |
void |
Rfc2307.removeUserFromGroup(String username,
String groupName) |
void |
RFC4519Directory.removeUserFromGroup(String username,
String groupName) |
void |
RemoteCrowdDirectory.removeUserFromGroup(String username,
String groupName) |
void |
AbstractForwardingDirectory.removeUserFromGroup(String username,
String groupName) |
void |
AbstractInternalDirectory.removeUserFromGroup(String username,
String groupName) |
void |
MockSimpleRemoteDirectory.removeUserFromGroup(String username,
String groupName) |
void |
RemoteDirectory.removeUserFromGroup(String username,
String groupName)
Removes a user as a member of a group.
|
Modifier and Type | Method and Description |
---|---|
void |
LocalGroupHandler.removeUserFromLocalGroup(String username,
String groupName) |
Modifier and Type | Method and Description |
---|---|
void |
MembershipDao.removeGroupFromGroup(long directoryId,
String childGroup,
String parentGroup)
Removes group from the parent group.
|
void |
MembershipDao.removeUserFromGroup(long directoryId,
String userName,
String groupName)
Removes user as a member of the given group.
|
Modifier and Type | Method and Description |
---|---|
void |
RestCrowdClient.removeGroupFromGroup(String childGroup,
String parentGroup) |
void |
RestCrowdClient.removeUserFromGroup(String username,
String groupName) |
Modifier and Type | Method and Description |
---|---|
void |
ApplicationServiceGeneric.removeGroupFromGroup(Application application,
String childGroupName,
String parentGroupName) |
void |
AbstractDelegatingApplicationService.removeGroupFromGroup(Application application,
String childGroup,
String parentGroup) |
void |
ApplicationService.removeGroupFromGroup(Application application,
String childGroup,
String parentGroup)
Makes child group matching the given name not members of the parent group across ALL active directories.
|
void |
ApplicationServiceGeneric.removeUserFromGroup(Application application,
String username,
String groupName) |
void |
TranslatingApplicationService.removeUserFromGroup(Application application,
String username,
String groupName) |
void |
AbstractDelegatingApplicationService.removeUserFromGroup(Application application,
String username,
String groupName) |
void |
ApplicationService.removeUserFromGroup(Application application,
String username,
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.
|
Modifier and Type | Method and Description |
---|---|
void |
DirectoryManagerGeneric.removeGroupFromGroup(long directoryId,
String childGroup,
String parentGroup) |
void |
DirectoryManager.removeGroupFromGroup(long directoryId,
String childGroup,
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.removeUserFromGroup(long directoryId,
String username,
String groupName) |
void |
DirectoryManager.removeUserFromGroup(long directoryId,
String username,
String groupName)
Removes an existing user from being a direct member of an existing group in the directory specified by the passed in
directoryId . |
Modifier and Type | Method and Description |
---|---|
void |
RecoveryModeRemoteDirectory.removeGroupFromGroup(String childGroup,
String parentGroup) |
void |
RecoveryModeRemoteDirectory.removeUserFromGroup(String username,
String groupName) |
Modifier and Type | Method and Description |
---|---|
javax.ws.rs.core.Response |
MembershipNotFoundExceptionMapper.toResponse(MembershipNotFoundException exception) |
Modifier and Type | Method and Description |
---|---|
void |
GroupsController.deleteDirectChildGroup(String groupName,
String childGroupName)
Deletes a child group membership.
|
void |
GroupsController.deleteDirectUser(String groupName,
String username)
Removes the user membership.
|
GroupEntity |
GroupsController.getDirectChildGroup(String groupName,
String childGroupName,
URI baseUri)
Retrieves the group that is a direct child of the specified group.
|
GroupEntity |
UsersController.getDirectGroup(String userName,
String groupName,
URI baseUri)
Returns the specified group that the user is a direct member of.
|
GroupEntity |
GroupsController.getDirectParentGroup(String groupName,
String parentGroupName,
URI baseUri)
Retrieves the group that is a direct parent of the specified group.
|
UserEntity |
GroupsController.getDirectUser(String groupName,
String username,
URI baseUri)
Retrieves the user that is a direct member of the specified group.
|
GroupEntity |
GroupsController.getNestedChildGroup(String groupName,
String childGroupName,
URI baseUri)
Retrieves the group that is a nested child of the specified group.
|
GroupEntity |
UsersController.getNestedGroup(String userName,
String groupName,
URI baseUri)
Returns the specified group that the user is a nested member of.
|
GroupEntity |
GroupsController.getNestedParentGroup(String groupName,
String parentGroupName,
URI baseUri)
Retrieves the group that is a nested parent of the specified group.
|
UserEntity |
GroupsController.getNestedUser(String groupName,
String username,
URI baseUri)
Retrieves the user that is a nested member of the specified group.
|
void |
UsersController.removeUserFromGroup(String userName,
String groupName)
Removes a user from a group.
|
Modifier and Type | Method and Description |
---|---|
javax.ws.rs.core.Response |
GroupsResource.getDirectChildrenOfGroup(String groupName,
String childGroupName,
int startIndex,
int maxResults)
Retrieves the groups that are direct children of the specified group or a single direct child of that group with the specified name.
|
javax.ws.rs.core.Response |
UsersResource.getDirectGroups(String userName,
String groupName,
int maxResults,
int startIndex)
Returns the a list of groups the user is a direct member of.
|
javax.ws.rs.core.Response |
GroupsResource.getDirectMembersOfGroup(String groupName,
String username,
int startIndex,
int maxResults)
Retrieves the users that are direct members of the specified group or a specified user who is a direct member of that group.
|
javax.ws.rs.core.Response |
GroupsResource.getDirectParentsOfGroup(String groupName,
String childGroupName,
int startIndex,
int maxResults)
Retrieves the groups that are direct parents of the specified group or a direct parent group of the specified child group.
|
javax.ws.rs.core.Response |
GroupsResource.getNestedChildrenOfGroup(String groupName,
String childGroupName,
int startIndex,
int maxResults)
Retrieves nested children of the specified group or a single nested child of that group with the specified name.
|
javax.ws.rs.core.Response |
UsersResource.getNestedGroups(String userName,
String groupName,
int maxResults,
int startIndex)
Retrieves the group that the user is a nested member of
|
javax.ws.rs.core.Response |
GroupsResource.getNestedMembersOfGroup(String groupName,
String username,
int startIndex,
int maxResults)
Retrieves the users that are nested members of the specified group or a single user who is a nested member of the specified group.
|
javax.ws.rs.core.Response |
GroupsResource.getNestedParentGroups(String groupName,
String parentGroupName,
int startIndex,
int maxResults)
Retrieves the groups that are nested parents of the specified group or a single nested parent of that group with the specified name.
|
javax.ws.rs.core.Response |
GroupsResource.removeDirectChildGroupMembership(String groupName,
String childGroupName)
Deletes a child group membership.
|
javax.ws.rs.core.Response |
GroupsResource.removeDirectGroupMembership(String groupName,
String username)
Removes the user membership.
|
javax.ws.rs.core.Response |
UsersResource.removeUserFromGroup(String userName,
String groupName)
Removes a user from a group.
|
Modifier and Type | Method and Description |
---|---|
void |
GroupMembershipManager.removeMembership(String userName,
String groupName)
Removes a user identified by
userName from the group identified by groupName . |
Modifier and Type | Method and Description |
---|---|
void |
CachingGroupMembershipManager.removeMembership(String userName,
String groupName) |
Modifier and Type | Method and Description |
---|---|
void |
CrowdClient.removeGroupFromGroup(String childGroup,
String parentGroup)
Removes a group to a group.
|
void |
CrowdClient.removeUserFromGroup(String username,
String groupName)
Removes a user from a group.
|
Modifier and Type | Method and Description |
---|---|
void |
SecurityServerClientImpl.removePrincipalFromGroup(String principal,
String group) |
void |
SecurityServerClient.removePrincipalFromGroup(String principal,
String group)
Removes a principal from a group for the application's assigned directory.
|
void |
SecurityServerClientImpl.removePrincipalFromRole(String principal,
String role) |
void |
SecurityServerClient.removePrincipalFromRole(String principal,
String role)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static void |
SoapExceptionTranslator.throwSoapEquivalentCheckedException(MembershipNotFoundException e) |
Modifier and Type | Method and Description |
---|---|
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 © 2020 Atlassian. All rights reserved.