Uses of Class
com.atlassian.crowd.manager.directory.DirectoryPermissionException

Packages that use DirectoryPermissionException
com.atlassian.crowd.acceptance.tests.persistence.manager.directory   
com.atlassian.crowd.manager.directory   
com.atlassian.crowd.manager.login   
 

Uses of DirectoryPermissionException in com.atlassian.crowd.acceptance.tests.persistence.manager.directory
 

Methods in com.atlassian.crowd.acceptance.tests.persistence.manager.directory that throw DirectoryPermissionException
protected  void DirectoryManagerGenericNestedGroupsTest.addGroup(java.lang.String name)
           
protected  void DirectoryManagerGenericNestedGroupsTest.addUser(java.lang.String name)
           
 void DirectoryManagerGenericNestedGroupsTest.testRemoveGroupFromGroup()
           
 void DirectoryManagerGenericNestedGroupsTest.testRemoveGroupFromGroupCycleDeletionFail()
           
 

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

Methods in com.atlassian.crowd.manager.directory that throw DirectoryPermissionException
 BulkAddResult<Group> DirectoryManager.addAllGroups(long directoryId, java.util.Collection<GroupTemplate> groups, boolean overwrite)
          Will add a collection of Group to the directory specified by the passed in directoryId param.
 BulkAddResult<Group> DirectoryManagerGeneric.addAllGroups(long directoryId, java.util.Collection<GroupTemplate> groups, boolean overwrite)
           
 BulkAddResult<User> DirectoryManager.addAllUsers(long directoryId, java.util.Collection<UserTemplateWithCredentialAndAttributes> users, boolean overwrite)
          Will add a collection of users to the directory specified by the passed in directoryId param.
 BulkAddResult<User> DirectoryManagerGeneric.addAllUsers(long directoryId, java.util.Collection<UserTemplateWithCredentialAndAttributes> users, boolean overwrite)
           
 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).
 BulkAddResult<java.lang.String> DirectoryManagerGeneric.addAllUsersToGroup(long directoryId, java.util.Collection<java.lang.String> userNames, java.lang.String groupName)
           
 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 DirectoryManagerGeneric.addGroupToGroup(long directoryId, java.lang.String childGroup, java.lang.String parentGroup)
           
 User DirectoryManager.addUser(long directoryId, UserTemplate user, PasswordCredential credential)
          Adds a User to the directory specified by the passed in directoryId.
 User DirectoryManagerGeneric.addUser(long directoryId, UserTemplate user, PasswordCredential credential)
           
 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.
 void DirectoryManagerGeneric.addUserToGroup(long directoryId, java.lang.String username, 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 DirectoryManagerGeneric.removeGroup(long directoryId, java.lang.String groupName)
           
 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 DirectoryManagerGeneric.removeGroupAttributes(long directoryId, java.lang.String groupName, java.lang.String attributeName)
           
 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.removeUser(long directoryId, java.lang.String username)
          Removes a user matching the supplied username in the directory specified by the passed in directoryId.
 void DirectoryManagerGeneric.removeUser(long directoryId, java.lang.String username)
           
 void DirectoryManager.removeUserAttributes(long directoryId, java.lang.String username, java.lang.String attributeName)
          Removes a user's attribute values in the directory specified by the passed in directoryId.
 void DirectoryManagerGeneric.removeUserAttributes(long directoryId, java.lang.String username, java.lang.String attributeName)
           
 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)
           
 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.
 Group DirectoryManagerGeneric.renameGroup(long directoryId, java.lang.String oldGroupname, java.lang.String newGroupname)
           
 User DirectoryManager.renameUser(long directoryId, java.lang.String oldUsername, java.lang.String newUsername)
          Renames a user in the directory specified by the passed in directoryId.
 User DirectoryManagerGeneric.renameUser(long directoryId, java.lang.String oldUsername, java.lang.String newUsername)
           
 void DirectoryManager.resetPassword(long directoryId, java.lang.String username)
          Deprecated. since 2.1
 void DirectoryManagerGeneric.resetPassword(long directoryId, java.lang.String username)
           
 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.
 void DirectoryManagerGeneric.storeGroupAttributes(long directoryId, java.lang.String groupName, java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes)
           
 void DirectoryManager.storeUserAttributes(long directoryId, java.lang.String username, java.util.Map<java.lang.String,java.util.Set<java.lang.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.
 void DirectoryManagerGeneric.storeUserAttributes(long directoryId, java.lang.String username, java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes)
           
 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.
 Group DirectoryManagerGeneric.updateGroup(long directoryId, GroupTemplate group)
           
 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.
 User DirectoryManagerGeneric.updateUser(long directoryId, UserTemplate user)
           
 void DirectoryManager.updateUserCredential(long directoryId, java.lang.String username, PasswordCredential credential)
          This will update the user's credential in the given directory specified by the passed in directoryId.
 void DirectoryManagerGeneric.updateUserCredential(long directoryId, java.lang.String username, PasswordCredential credential)
           
 

Uses of DirectoryPermissionException in com.atlassian.crowd.manager.login
 

Methods in com.atlassian.crowd.manager.login that throw DirectoryPermissionException
 void ForgottenLoginManagerImpl.resetUserCredential(long directoryId, java.lang.String username, PasswordCredential credential, java.lang.String token)
           
 void ForgottenLoginManager.resetUserCredential(long directoryId, java.lang.String username, PasswordCredential credential, java.lang.String token)
          Resets the user credentials and invalidates the token.
 



Copyright © 2010 Atlassian. All Rights Reserved.