Uses of Class
com.atlassian.crowd.manager.directory.DirectoryPermissionException
Packages that use DirectoryPermissionException
-
Uses of DirectoryPermissionException in com.atlassian.crowd.manager.directory
Methods in com.atlassian.crowd.manager.directory that throw DirectoryPermissionExceptionModifier and TypeMethodDescriptionDirectoryManager.addAllGroups(long directoryId, Collection<GroupTemplate> groups, boolean overwrite) Will add a collection of Group to the directory specified by the passed indirectoryIdparam.DirectoryManager.addAllUsers(long directoryId, Collection<UserTemplateWithCredentialAndAttributes> users, boolean overwrite) Will add a collection of users to the directory specified by the passed indirectoryIdparam.DirectoryManager.addAllUsersToGroup(long directoryID, Collection<String> userNames, String groupName) A bulk version ofDirectoryManager.addUserToGroup(long, String, String).DirectoryManager.addGroup(long directoryId, GroupTemplate group) Adds a Group to the directory specified by the passed indirectoryId.voidDirectoryManager.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 indirectoryId.DirectoryManager.addUser(long directoryId, UserTemplate user, PasswordCredential credential) Deprecated.DirectoryManager.addUser(long directoryId, UserTemplateWithAttributes user, PasswordCredential credential) Adds aUserWithAttributesto the directory specified by the passed indirectoryId.MembershipService.addUsersToGroup(long directoryId, List<String> usernames, String groupName) Adds multiple users to single supplied groupvoidDirectoryManager.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 indirectoryId.voidDirectoryManager.removeGroup(long directoryId, String groupName) Removes a group matching the supplied groupName in the directory specified by the passed indirectoryId.voidDirectoryManager.removeGroupAttributes(long directoryId, String groupName, String attributeName) Removes a group's attribute values in the directory specified by the passed indirectoryId.voidDirectoryManager.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 indirectoryId.voidDirectoryManager.removeUser(long directoryId, String username) Removes a user matching the supplied username in the directory specified by the passed indirectoryId.voidDirectoryManager.removeUserAttributes(long directoryId, String username, String attributeName) Removes a user's attribute values in the directory specified by the passed indirectoryId.voidDirectoryManager.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 indirectoryId.DirectoryManager.renameGroup(long directoryId, String oldGroupname, String newGroupname) Renames a group in the directory specified by the passed indirectoryId.DirectoryManager.renameUser(long directoryId, String oldUsername, String newUsername) Renames a user in the directory specified by the passed indirectoryId.voidDirectoryManager.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 indirectoryId.voidDirectoryManager.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 indirectoryId.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 indirectoryId.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 indirectoryId.voidDirectoryManager.updateUserCredential(long directoryId, String username, PasswordCredential credential) This will update the user's credential in the given directory specified by the passed indirectoryId.
DirectoryManager.addUser(long, com.atlassian.crowd.model.user.UserTemplateWithAttributes, com.atlassian.crowd.embedded.api.PasswordCredential)instead.