Modifier and Type | Method and Description |
---|---|
BulkAddResult<Group> |
DirectoryManagerGeneric.addAllGroups(long directoryId,
Collection<GroupTemplate> groups,
boolean overwrite) |
BulkAddResult<Group> |
DirectoryManager.addAllGroups(long directoryId,
Collection<GroupTemplate> groups,
boolean overwrite)
Will add a collection of Group to the directory specified by the passed in
directoryId param. |
BulkAddResult<User> |
DirectoryManagerGeneric.addAllUsers(long directoryId,
Collection<UserTemplateWithCredentialAndAttributes> users,
boolean overwrite) |
BulkAddResult<User> |
DirectoryManager.addAllUsers(long directoryId,
Collection<UserTemplateWithCredentialAndAttributes> users,
boolean overwrite)
Will add a collection of users to the directory specified by the passed in
directoryId param. |
BulkAddResult<String> |
DirectoryManagerGeneric.addAllUsersToGroup(long directoryId,
Collection<String> userNames,
String groupName) |
BulkAddResult<String> |
DirectoryManager.addAllUsersToGroup(long directoryID,
Collection<String> userNames,
String groupName)
A bulk version of
DirectoryManager.addUserToGroup(long, String, String) . |
Group |
DirectoryManagerGeneric.addGroup(long directoryId,
GroupTemplate group) |
Group |
DirectoryManager.addGroup(long directoryId,
GroupTemplate group)
Adds a Group to the directory specified by the passed in
directoryId . |
void |
DirectoryManagerGeneric.addGroupToGroup(long directoryId,
String childGroup,
String parentGroup) |
void |
DirectoryManager.addGroupToGroup(long directoryId,
String childGroup,
String parentGroup)
Adds an existing child group as direct member of an existing parent group in the directory specified by the passed in
directoryId . |
User |
DirectoryManagerGeneric.addUser(long directoryId,
UserTemplate user,
PasswordCredential credential) |
User |
DirectoryManager.addUser(long directoryId,
UserTemplate user,
PasswordCredential credential)
Deprecated.
|
UserWithAttributes |
DirectoryManagerGeneric.addUser(long directoryId,
UserTemplateWithAttributes user,
PasswordCredential credential) |
UserWithAttributes |
DirectoryManager.addUser(long directoryId,
UserTemplateWithAttributes user,
PasswordCredential credential)
Adds a
UserWithAttributes to the directory specified by the passed in directoryId . |
BatchResult<BatchResultEntityWithCause> |
MembershipService.addUsersToGroup(long directoryId,
List<String> usernames,
String groupName)
Adds multiple users to single supplied group
|
void |
DirectoryManagerGeneric.addUserToGroup(long directoryId,
String username,
String groupName) |
void |
DirectoryManager.addUserToGroup(long directoryId,
String username,
String groupName)
Adds an existing user as a direct member of an existing group in the directory specified by the passed in
directoryId . |
void |
DirectoryManagerGeneric.removeGroup(long directoryId,
String groupName) |
void |
DirectoryManager.removeGroup(long directoryId,
String groupName)
Removes a group matching the supplied groupName in the directory specified by the passed in
directoryId . |
void |
DirectoryManagerGeneric.removeGroupAttributes(long directoryId,
String groupName,
String attributeName) |
void |
DirectoryManager.removeGroupAttributes(long directoryId,
String groupName,
String attributeName)
Removes a group's attribute values in the directory specified by the passed in
directoryId . |
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.removeUser(long directoryId,
String username) |
void |
DirectoryManager.removeUser(long directoryId,
String username)
Removes a user matching the supplied username in the directory specified by the passed in
directoryId . |
void |
DirectoryManagerGeneric.removeUserAttributes(long directoryId,
String username,
String attributeName) |
void |
DirectoryManager.removeUserAttributes(long directoryId,
String username,
String attributeName)
Removes a user's attribute values 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 . |
Group |
DirectoryManagerGeneric.renameGroup(long directoryId,
String oldGroupname,
String newGroupname) |
Group |
DirectoryManager.renameGroup(long directoryId,
String oldGroupname,
String newGroupname)
Renames a group in the directory specified by the passed in
directoryId . |
User |
DirectoryManagerGeneric.renameUser(long directoryId,
String oldUsername,
String newUsername) |
User |
DirectoryManager.renameUser(long directoryId,
String oldUsername,
String newUsername)
Renames a user in the directory specified by the passed in
directoryId . |
void |
DirectoryManagerGeneric.storeGroupAttributes(long directoryId,
String groupName,
Map<String,Set<String>> attributes) |
void |
DirectoryManager.storeGroupAttributes(long directoryId,
String groupName,
Map<String,Set<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 |
DirectoryManagerGeneric.storeUserAttributes(long directoryId,
String username,
Map<String,Set<String>> attributes) |
void |
DirectoryManager.storeUserAttributes(long directoryId,
String username,
Map<String,Set<String>> attributes)
Adds or updates a user's attributes with the new Map of attribute values in the directory specified by the passed in
directoryId . |
Group |
DirectoryManagerGeneric.updateGroup(long directoryId,
GroupTemplate group) |
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 . |
User |
DirectoryManagerGeneric.updateUser(long directoryId,
UserTemplate user) |
User |
DirectoryManager.updateUser(long directoryId,
UserTemplate user)
Updates a user with the supplied template and returns the updated user retrieved from the directory specified by the passed in
directoryId . |
void |
DirectoryManagerGeneric.updateUserCredential(long directoryId,
String username,
PasswordCredential credential) |
void |
DirectoryManager.updateUserCredential(long directoryId,
String username,
PasswordCredential credential)
This will update the user's credential in the given directory specified by the passed in
directoryId . |
Modifier and Type | Method and Description |
---|---|
void |
ForgottenLoginManagerImpl.resetUserCredential(long directoryId,
String username,
PasswordCredential credential,
String token) |
void |
ForgottenLoginManager.resetUserCredential(long directoryId,
String username,
PasswordCredential credential,
String token)
Resets the user credentials and invalidates the token.
|
Modifier and Type | Method and Description |
---|---|
BatchResult<BatchResultEntityWithCause> |
MembershipServiceImpl.addUsersToGroup(long directoryId,
List<String> usernames,
String groupName) |
Modifier and Type | Method and Description |
---|---|
javax.ws.rs.core.Response |
DirectoryPermissionExceptionMapper.toResponse(DirectoryPermissionException exception) |
Modifier and Type | Method and Description |
---|---|
void |
AccountManagementController.resetPassword(String username,
long directoryId,
String password,
String token) |
Modifier and Type | Method and Description |
---|---|
BatchResultWithFailureReasonsRestDto<DirectoryEntityId> |
GroupsMembershipController.addUsersToGroup(List<DirectoryEntityId> users,
DirectoryEntityId groupId) |
Modifier and Type | Method and Description |
---|---|
javax.ws.rs.core.Response |
GroupsMembershipResource.addUsersToGroup(DirectoryEntityId groupId,
UserIdentifiersEntityList users)
Adds multiple users to a single group placed in the same directory
|
Copyright © 2020 Atlassian. All rights reserved.