com.atlassian.crowd.directory
Class InternalDirectory

java.lang.Object
  extended by com.atlassian.crowd.directory.AbstractInternalDirectory
      extended by com.atlassian.crowd.directory.InternalDirectory
All Implemented Interfaces:
InternalRemoteDirectory, RemoteDirectory, Attributes

public class InternalDirectory
extends AbstractInternalDirectory

Internal directory connector. Stores all entity information to the database used by the Crowd Server. Note that this implementation is used for an Actual InternalDirectory, and there is a related class CachingDirectory that does local caching of remote objects.


Field Summary
 
Fields inherited from class com.atlassian.crowd.directory.AbstractInternalDirectory
ATTRIBUTE_PASSWORD_HISTORY_COUNT, ATTRIBUTE_PASSWORD_MAX_ATTEMPTS, ATTRIBUTE_PASSWORD_MAX_CHANGE_TIME, ATTRIBUTE_PASSWORD_REGEX, ATTRIBUTE_USER_ENCRYPTION_METHOD, attributes, DESCRIPTIVE_NAME, directoryDao, directoryId, groupDao, internalDirectoryUtils, membershipDao, passwordEncoderFactory, userDao
 
Constructor Summary
InternalDirectory(InternalDirectoryUtils internalDirectoryUtils, PasswordEncoderFactory passwordEncoderFactory, DirectoryDao directoryDao, UserDao userDao, GroupDao groupDao, MembershipDao membershipDao)
           
 
Method Summary
 BatchResult<Group> addAllGroups(java.util.Set<GroupTemplate> groups)
           
 BatchResult<User> addAllUsers(java.util.Set<UserTemplateWithCredentialAndAttributes> users)
           
 BatchResult<java.lang.String> addAllUsersToGroup(java.util.Set<java.lang.String> userNames, java.lang.String groupName)
           
 Group addLocalGroup(GroupTemplate group)
           
 User addUser(UserTemplate user, PasswordCredential credential)
          Adds a user and the following custom attributes: - RemotePrincipalConstants.PASSWORD_LASTCHANGED set to the current time.
 
Methods inherited from class com.atlassian.crowd.directory.AbstractInternalDirectory
addGroup, addGroupToGroup, addUserToGroup, authenticate, currentPrincipalInvalidPasswordAttempts, encryptCredential, findGroupByName, findGroupWithAttributesByName, findUserByName, findUserWithAttributesByName, getAuthoritativeDirectory, getDescriptiveName, getDirectoryId, getEncoder, getKeys, getMemberships, getValue, getValues, isEmpty, isGroupDirectGroupMember, isRolesDisabled, isUserDirectGroupMember, removeAllGroups, removeAllUsers, removeGroup, removeGroupAttributes, removeGroupFromGroup, removeUser, removeUserAttributes, removeUserFromGroup, renameGroup, renameUser, requiresPasswordChange, searchGroupRelationships, searchGroups, searchUsers, setAttributes, setDirectoryId, storeGroupAttributes, storeUserAttributes, supportsInactiveAccounts, supportsNestedGroups, testConnection, updateGroup, updateUser, updateUserCredential
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

InternalDirectory

public InternalDirectory(InternalDirectoryUtils internalDirectoryUtils,
                         PasswordEncoderFactory passwordEncoderFactory,
                         DirectoryDao directoryDao,
                         UserDao userDao,
                         GroupDao groupDao,
                         MembershipDao membershipDao)
Method Detail

addUser

public User addUser(UserTemplate user,
                    PasswordCredential credential)
             throws InvalidCredentialException,
                    InvalidUserException,
                    UserAlreadyExistsException,
                    OperationFailedException
Adds a user and the following custom attributes: - RemotePrincipalConstants.PASSWORD_LASTCHANGED set to the current time. - RemotePrincipalConstants.REQUIRES_PASSWORD_CHANGE set to false.

Specified by:
addUser in interface RemoteDirectory
Specified by:
addUser in class AbstractInternalDirectory
Parameters:
user - template of the user to add.
credential - password. May be null, since JIRA creates a user in two steps
Returns:
added user.
Throws:
InvalidCredentialException - the password does not match the regular expression standard defined by the directory.
InvalidUserException
UserAlreadyExistsException
OperationFailedException

addLocalGroup

public Group addLocalGroup(GroupTemplate group)
                    throws OperationFailedException
Specified by:
addLocalGroup in interface InternalRemoteDirectory
Specified by:
addLocalGroup in class AbstractInternalDirectory
Throws:
OperationFailedException

addAllUsers

public BatchResult<User> addAllUsers(java.util.Set<UserTemplateWithCredentialAndAttributes> users)

addAllGroups

public BatchResult<Group> addAllGroups(java.util.Set<GroupTemplate> groups)

addAllUsersToGroup

public BatchResult<java.lang.String> addAllUsersToGroup(java.util.Set<java.lang.String> userNames,
                                                        java.lang.String groupName)
                                                 throws GroupNotFoundException
Throws:
GroupNotFoundException


Copyright © 2012 Atlassian. All Rights Reserved.