Uses of Class
com.atlassian.crowd.embedded.api.PasswordCredential

Packages that use PasswordCredential
com.atlassian.crowd.acceptance.tests.concurrent   
com.atlassian.crowd.dao.application   
com.atlassian.crowd.dao.user   
com.atlassian.crowd.directory   
com.atlassian.crowd.embedded.api   
com.atlassian.crowd.embedded.spi   
com.atlassian.crowd.event.user   
com.atlassian.crowd.integration.rest.service   
com.atlassian.crowd.integration.rest.util   
com.atlassian.crowd.manager.application   
com.atlassian.crowd.manager.directory   
com.atlassian.crowd.manager.login   
com.atlassian.crowd.migration.legacy   
com.atlassian.crowd.model.application   
com.atlassian.crowd.model.authentication   
com.atlassian.crowd.model.user   
com.atlassian.crowd.service   
com.atlassian.crowd.service.cache   
com.atlassian.crowd.service.client   
com.atlassian.crowd.service.soap.client   
com.atlassian.crowd.util   
 

Uses of PasswordCredential in com.atlassian.crowd.acceptance.tests.concurrent
 

Methods in com.atlassian.crowd.acceptance.tests.concurrent that return PasswordCredential
protected  PasswordCredential TokenStorageSwitchTest.getNewPasswordCredential(java.lang.String username)
           
 

Uses of PasswordCredential in com.atlassian.crowd.dao.application
 

Methods in com.atlassian.crowd.dao.application with parameters of type PasswordCredential
 ApplicationImpl ApplicationDAOHibernate.add(Application application, PasswordCredential passwordCredential)
           
 Application ApplicationDAO.add(Application application, PasswordCredential passwordCredential)
          Will only create the core attributes to an application, i.e.
 void ApplicationDAOHibernate.updateCredential(Application application, PasswordCredential passwordCredential)
           
 void ApplicationDAO.updateCredential(Application application, PasswordCredential passwordCredential)
           
 

Uses of PasswordCredential in com.atlassian.crowd.dao.user
 

Methods in com.atlassian.crowd.dao.user that return PasswordCredential
 PasswordCredential UserDAOHibernate.getCredential(long directoryId, java.lang.String username)
           
 

Methods in com.atlassian.crowd.dao.user that return types with arguments of type PasswordCredential
 java.util.List<PasswordCredential> UserDAOHibernate.getCredentialHistory(long directoryId, java.lang.String username)
           
 

Methods in com.atlassian.crowd.dao.user with parameters of type PasswordCredential
 InternalUser UserDAOHibernate.add(User user, PasswordCredential credential)
           
 void UserDAOHibernate.updateCredential(User user, PasswordCredential credential, int maxPasswordHistory)
           
 

Uses of PasswordCredential in com.atlassian.crowd.directory
 

Methods in com.atlassian.crowd.directory with parameters of type PasswordCredential
 User RemoteCrowdDirectory.addUser(UserTemplate user, PasswordCredential credential)
           
 User InternalDirectory.addUser(UserTemplate user, PasswordCredential credential)
          Adds a user and the following custom attributes: - RemotePrincipalConstants.PASSWORD_LASTCHANGED set to the current time.
 User DelegatedAuthenticationDirectory.addUser(UserTemplate user, PasswordCredential credential)
           
 User CachingDirectory.addUser(UserTemplate user, PasswordCredential credential)
          Adds a user with no special added logic.
abstract  User AbstractInternalDirectory.addUser(UserTemplate user, PasswordCredential credential)
           
 User RemoteDirectory.addUser(UserTemplate user, PasswordCredential credential)
          Adds a user to the directory store.
 LDAPUserWithAttributes SpringLDAPConnector.addUser(UserTemplate user, PasswordCredential credential)
          Adds a user to LDAP.
 LDAPUserWithAttributes Rfc2307.addUser(UserTemplate user, PasswordCredential credential)
           
 User DbCachingRemoteDirectory.addUser(UserTemplate user, PasswordCredential credential)
           
 User RemoteCrowdDirectory.authenticate(java.lang.String username, PasswordCredential credential)
           
 User DelegatedAuthenticationDirectory.authenticate(java.lang.String name, PasswordCredential credential)
           
 User AbstractInternalDirectory.authenticate(java.lang.String name, PasswordCredential credential)
           
 User RemoteDirectory.authenticate(java.lang.String name, PasswordCredential credential)
          Authenticates a user with the directory store.
 User SpringLDAPConnector.authenticate(java.lang.String name, PasswordCredential credential)
           
 User DbCachingRemoteDirectory.authenticate(java.lang.String name, PasswordCredential credential)
           
protected  void AbstractInternalDirectory.encryptCredential(PasswordCredential passwordCredential)
           
protected  javax.naming.directory.Attributes SpringLDAPConnector.getNewUserAttributes(User user, PasswordCredential credential)
          Translates the User into LDAP attributes, in preparation for creating a new user.
 void RemoteCrowdDirectory.updateUserCredential(java.lang.String username, PasswordCredential credential)
           
 void DelegatedAuthenticationDirectory.updateUserCredential(java.lang.String username, PasswordCredential credential)
           
 void AbstractInternalDirectory.updateUserCredential(java.lang.String name, PasswordCredential newCredential)
           
 void RemoteDirectory.updateUserCredential(java.lang.String username, PasswordCredential credential)
          Updates the password for a user.
 void SpringLDAPConnector.updateUserCredential(java.lang.String name, PasswordCredential credential)
           
 void AppleOpenDirectory.updateUserCredential(java.lang.String name, PasswordCredential credential)
          We don't support changing passwords in Open Directory, mainly because we can't figure out how.
 void DbCachingRemoteDirectory.updateUserCredential(java.lang.String username, PasswordCredential credential)
           
 void InternalDirectoryUtilsImpl.validateCredential(PasswordCredential credential, java.lang.String regex)
           
 void InternalDirectoryUtils.validateCredential(PasswordCredential credential, java.lang.String regex)
           
 

Uses of PasswordCredential in com.atlassian.crowd.embedded.api
 

Fields in com.atlassian.crowd.embedded.api declared as PasswordCredential
static PasswordCredential PasswordCredential.NONE
           
 

Methods in com.atlassian.crowd.embedded.api that return PasswordCredential
static PasswordCredential PasswordCredential.encrypted(java.lang.String encryptedCredential)
           
static PasswordCredential PasswordCredential.unencrypted(java.lang.String unencryptedCredential)
           
 

Constructors in com.atlassian.crowd.embedded.api with parameters of type PasswordCredential
PasswordCredential(PasswordCredential passwordCredential)
           
 

Uses of PasswordCredential in com.atlassian.crowd.embedded.spi
 

Methods in com.atlassian.crowd.embedded.spi that return PasswordCredential
 PasswordCredential UserDao.getCredential(long directoryId, java.lang.String userName)
          Returns the credential for the given user.
 

Methods in com.atlassian.crowd.embedded.spi that return types with arguments of type PasswordCredential
 java.util.List<PasswordCredential> UserDao.getCredentialHistory(long directoryId, java.lang.String userName)
          Returns the previous credentials for the given user, starting with the oldest.
 

Methods in com.atlassian.crowd.embedded.spi with parameters of type PasswordCredential
 User UserDao.add(User user, PasswordCredential credential)
          Creates a new user with the given details and credentials.
 void UserDao.updateCredential(User user, PasswordCredential credential, int maxCredentialHistory)
          Updates the credential (password) of the user with the same directory and case-insensitive name.
 

Uses of PasswordCredential in com.atlassian.crowd.event.user
 

Methods in com.atlassian.crowd.event.user that return PasswordCredential
 PasswordCredential UserCredentialUpdatedEvent.getNewCredential()
           
 

Constructors in com.atlassian.crowd.event.user with parameters of type PasswordCredential
UserCredentialUpdatedEvent(java.lang.Object source, Directory directory, java.lang.String username, PasswordCredential newCredential)
           
 

Uses of PasswordCredential in com.atlassian.crowd.integration.rest.service
 

Methods in com.atlassian.crowd.integration.rest.service with parameters of type PasswordCredential
 void RestCrowdClient.addUser(User user, PasswordCredential passwordCredential)
           
 

Uses of PasswordCredential in com.atlassian.crowd.integration.rest.util
 

Methods in com.atlassian.crowd.integration.rest.util with parameters of type PasswordCredential
static UserEntity EntityTranslator.toUserEntity(User user, PasswordCredential passwordCredential)
          Translates a User to a UserEntity.
 

Uses of PasswordCredential in com.atlassian.crowd.manager.application
 

Methods in com.atlassian.crowd.manager.application with parameters of type PasswordCredential
 User ApplicationService.addUser(Application application, UserTemplate user, PasswordCredential credential)
          Adds the user to the first permissible active directory.
 User TranslatingApplicationService.addUser(Application application, UserTemplate user, PasswordCredential credential)
           
 User ApplicationServiceGeneric.addUser(Application application, UserTemplate user, PasswordCredential credential)
           
 boolean ApplicationManager.authenticate(Application application, PasswordCredential testCredential)
          Takes an application, which contains a hashed credential, and compares that to a hash of the supplied testCredential.
 boolean ApplicationManagerGeneric.authenticate(Application application, PasswordCredential testCredential)
           
 User ApplicationService.authenticateUser(Application application, java.lang.String username, PasswordCredential passwordCredential)
          Will attempt to authenticate the given user against the application
 User TranslatingApplicationService.authenticateUser(Application application, java.lang.String username, PasswordCredential passwordCredential)
           
 User ApplicationServiceGeneric.authenticateUser(Application application, java.lang.String username, PasswordCredential passwordCredential)
           
 void ApplicationManager.updateCredential(Application application, PasswordCredential passwordCredential)
          Takes an application with a List of credentials that are unencrypted, encrypts them and then updates the application in the database with the encrypted credentials
 void ApplicationManagerGeneric.updateCredential(Application application, PasswordCredential passwordCredential)
           
 void ApplicationService.updateUserCredential(Application application, java.lang.String username, PasswordCredential credential)
          Updates the credentials of the first matching user from all the active directories assigned to the application.
 void TranslatingApplicationService.updateUserCredential(Application application, java.lang.String username, PasswordCredential credential)
           
 void ApplicationServiceGeneric.updateUserCredential(Application application, java.lang.String username, PasswordCredential credential)
           
 

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

Methods in com.atlassian.crowd.manager.directory with parameters of type PasswordCredential
 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)
           
 User DirectoryManager.authenticateUser(long directoryId, java.lang.String username, PasswordCredential passwordCredential)
           
 User DirectoryManagerGeneric.authenticateUser(long directoryId, java.lang.String username, PasswordCredential passwordCredential)
           
 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 PasswordCredential in com.atlassian.crowd.manager.login
 

Methods in com.atlassian.crowd.manager.login with parameters of type PasswordCredential
 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.
 

Uses of PasswordCredential in com.atlassian.crowd.migration.legacy
 

Methods in com.atlassian.crowd.migration.legacy that return PasswordCredential
protected  PasswordCredential GenericLegacyImporter.getPasswordCredentialFromXml(org.dom4j.Element parentElement)
           
 

Uses of PasswordCredential in com.atlassian.crowd.model.application
 

Methods in com.atlassian.crowd.model.application that return PasswordCredential
 PasswordCredential ApplicationImpl.getCredential()
           
 PasswordCredential Application.getCredential()
           
 

Methods in com.atlassian.crowd.model.application with parameters of type PasswordCredential
static ApplicationImpl ApplicationImpl.newInstanceWithCredential(java.lang.String name, ApplicationType type, PasswordCredential credential)
           
static ApplicationImpl ApplicationImpl.newInstanceWithIdAndCredential(java.lang.String name, ApplicationType type, PasswordCredential credential, long id)
           
 void ApplicationImpl.setCredential(PasswordCredential credential)
           
 

Constructors in com.atlassian.crowd.model.application with parameters of type PasswordCredential
ApplicationImpl(java.lang.String name, long id, ApplicationType type, java.lang.String description, PasswordCredential credential, boolean active, java.util.Map<java.lang.String,java.lang.String> attributes, java.util.List<DirectoryMapping> directoryMappings, java.util.Set<RemoteAddress> remoteAddresses, java.util.Date createdDate, java.util.Date updatedDate)
           
 

Uses of PasswordCredential in com.atlassian.crowd.model.authentication
 

Methods in com.atlassian.crowd.model.authentication that return PasswordCredential
 PasswordCredential AuthenticationContext.getCredential()
          Gets the authenticating credential information.
 

Methods in com.atlassian.crowd.model.authentication with parameters of type PasswordCredential
 void AuthenticationContext.setCredential(PasswordCredential credential)
          Sets the authenticating credential information.
 

Constructors in com.atlassian.crowd.model.authentication with parameters of type PasswordCredential
ApplicationAuthenticationContext(java.lang.String name, PasswordCredential credential, ValidationFactor[] validationFactors)
           
AuthenticationContext(java.lang.String name, PasswordCredential credential, ValidationFactor[] validationFactors)
           
UserAuthenticationContext(java.lang.String name, PasswordCredential credential, ValidationFactor[] validationFactors, java.lang.String application)
           
 

Uses of PasswordCredential in com.atlassian.crowd.model.user
 

Methods in com.atlassian.crowd.model.user that return PasswordCredential
 PasswordCredential InternalUserWithAttributes.getCredential()
           
 PasswordCredential InternalUserCredentialRecord.getCredential()
           
 PasswordCredential InternalUser.getCredential()
           
 PasswordCredential UserTemplateWithCredentialAndAttributes.getCredential()
           
 

Methods in com.atlassian.crowd.model.user that return types with arguments of type PasswordCredential
 java.util.List<PasswordCredential> InternalUser.getCredentialHistory()
           
 java.util.List<PasswordCredential> UserTemplateWithCredentialAndAttributes.getCredentialHistory()
           
 

Methods in com.atlassian.crowd.model.user with parameters of type PasswordCredential
 void InternalUser.updateCredentialTo(PasswordCredential newCredential, int maxCredentialHistory)
           
 

Constructors in com.atlassian.crowd.model.user with parameters of type PasswordCredential
InternalUser(InternalEntityTemplate internalEntityTemplate, Directory directory, UserTemplate userTemplate, PasswordCredential credential)
          This constructor is used by the importer only.
InternalUser(User user, Directory directory, PasswordCredential credential)
          Constructor used for adding a new user.
UserTemplateWithCredentialAndAttributes(java.lang.String username, long directoryId, PasswordCredential credential)
           
UserTemplateWithCredentialAndAttributes(User user, java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes, PasswordCredential credential)
           
UserTemplateWithCredentialAndAttributes(User user, PasswordCredential credential)
           
 

Uses of PasswordCredential in com.atlassian.crowd.service
 

Methods in com.atlassian.crowd.service with parameters of type PasswordCredential
 SOAPPrincipal UserManager.addUser(SOAPPrincipal user, PasswordCredential credential)
          Adds a user to Crowd.
 void UserManager.updatePassword(java.lang.String userName, PasswordCredential credential)
          Changes the password for the user specified by userName.
 

Uses of PasswordCredential in com.atlassian.crowd.service.cache
 

Methods in com.atlassian.crowd.service.cache with parameters of type PasswordCredential
 SOAPPrincipal CachingUserManager.addUser(SOAPPrincipal user, PasswordCredential credential)
           
 void CachingUserManager.updatePassword(java.lang.String userName, PasswordCredential credential)
           
 

Uses of PasswordCredential in com.atlassian.crowd.service.client
 

Methods in com.atlassian.crowd.service.client with parameters of type PasswordCredential
 void CrowdClient.addUser(User user, PasswordCredential passwordCredential)
          Adds a new User to the remote Crowd server.
 

Uses of PasswordCredential in com.atlassian.crowd.service.soap.client
 

Methods in com.atlassian.crowd.service.soap.client with parameters of type PasswordCredential
 SOAPPrincipal SecurityServerClientImpl.addPrincipal(SOAPPrincipal principal, PasswordCredential credential)
          Adds a principal to the application's assigned directory.
 SOAPPrincipal SecurityServerClient.addPrincipal(SOAPPrincipal principal, PasswordCredential credential)
          Adds a principal to the application's assigned directory.
 void SecurityServerClientImpl.updatePrincipalCredential(java.lang.String principal, PasswordCredential credential)
          Updates the password credential for a principal who is in the application's assigned directory.
 void SecurityServerClient.updatePrincipalCredential(java.lang.String principal, PasswordCredential credential)
          Updates the password credential for a principal who is in the application's assigned directory.
 

Uses of PasswordCredential in com.atlassian.crowd.util
 

Methods in com.atlassian.crowd.util that return PasswordCredential
static PasswordCredential SoapObjectTranslator.fromSoapPasswordCredential(PasswordCredential passwordCredential)
          Converts from SOAP version of PasswordCredential.
 

Methods in com.atlassian.crowd.util with parameters of type PasswordCredential
static PasswordCredential SoapObjectTranslator.toSoapPasswordCredential(PasswordCredential passwordCredential)
          Converts to the SOAP version of PasswordCredential.
 boolean PasswordHelper.validateRegex(java.lang.String regex, PasswordCredential credential)
           
 boolean PasswordHelperImpl.validateRegex(java.lang.String regex, PasswordCredential credential)
          Validates the password meets the expected regex restriction.
 



Copyright © 2010 Atlassian. All Rights Reserved.