Uses of Class
com.atlassian.crowd.model.token.Token

Packages that use Token
com.atlassian.crowd.acceptance.tests.directory   
com.atlassian.crowd.authentication   
com.atlassian.crowd.event   
com.atlassian.crowd.event.application   
com.atlassian.crowd.event.user   
com.atlassian.crowd.manager   
com.atlassian.crowd.manager.application   
com.atlassian.crowd.manager.directory   
com.atlassian.crowd.model.token   
 

Uses of Token in com.atlassian.crowd.acceptance.tests.directory
 

Methods in com.atlassian.crowd.acceptance.tests.directory that return types with arguments of type Token
 List<Token> MockDirectoryManager.searchTokens(EntityQuery query)
           
 

Uses of Token in com.atlassian.crowd.authentication
 

Methods in com.atlassian.crowd.authentication that return Token
 Token TokenFactoryImpl.create(long directoryID, String name, List<ValidationFactor> validationFactors)
           
 Token TokenFactory.create(long directoryID, String name, List<ValidationFactor> validationFactors)
          Generates a token key based on the supplied validationFactors.
 Token TokenFactoryImpl.create(long directoryID, String name, List<ValidationFactor> validationFactors, long secretNumber)
           
 Token TokenFactory.create(long directoryID, String name, List<ValidationFactor> validationFactors, long secretNumber)
          Generates a token key based on the supplied validationFactors.
 

Uses of Token in com.atlassian.crowd.event
 

Methods in com.atlassian.crowd.event that return Token
 Token TokenInvalidatedEvent.getToken()
           
 

Constructors in com.atlassian.crowd.event with parameters of type Token
TokenInvalidatedEvent(Object source, Token token)
           
 

Uses of Token in com.atlassian.crowd.event.application
 

Methods in com.atlassian.crowd.event.application that return Token
 Token ApplicationAuthenticatedEvent.getToken()
           
 

Constructors in com.atlassian.crowd.event.application with parameters of type Token
ApplicationAuthenticatedEvent(Object source, Application application, Token token)
           
 

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

Methods in com.atlassian.crowd.event.user that return Token
 Token UserAuthenticationSucceededEvent.getToken()
           
 

Constructors in com.atlassian.crowd.event.user with parameters of type Token
UserAuthenticationSucceededEvent(Object source, User user, Application application, Token token)
           
 

Uses of Token in com.atlassian.crowd.manager
 

Methods in com.atlassian.crowd.manager that return Token
protected  Token GenericManager.generateApplicationToken(ApplicationAuthenticationContext authenticationContext)
           
protected  Token GenericManager.generateUserToken(long directoryID, AuthenticationContext authenticationContext)
          This method will return a Token based on the passed in parameters.
protected  Token GenericManager.genericValidateToken(String token, ValidationFactor[] validationFactors)
          Will validate a token key with the given ValidationFactor's against one (if it exists) in the datastore.
 

Methods in com.atlassian.crowd.manager with parameters of type Token
 boolean GenericManager.isAllowedToAuthenticate(Token token, Application application)
           
 boolean GenericManager.isAllowedToAuthenticate(Token token, Application application, boolean ignoreCache)
           
protected  boolean GenericManager.isExpired(Token token)
           
 

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

Methods in com.atlassian.crowd.manager.application that return Token
 Token ApplicationServiceGeneric.authenticateApplication(ApplicationAuthenticationContext authenticationContext)
           
 Token ApplicationService.authenticateApplication(ApplicationAuthenticationContext authenticationContext)
          Authenticates an application and generates an authentication token.
 Token ApplicationServiceGeneric.authenticateUser(UserAuthenticationContext authenticateContext)
           
 Token ApplicationService.authenticateUser(UserAuthenticationContext authenticateContext)
          Authenticates a user and and generates an authentication token.
 Token ApplicationServiceGeneric.authenticateUser(UserAuthenticationContext authenticationContext, boolean validatePassword, boolean ignoreCache)
           
 Token ApplicationServiceGeneric.authenticateUserWithoutValidatingPassword(UserAuthenticationContext authenticateContext)
           
 Token ApplicationService.authenticateUserWithoutValidatingPassword(UserAuthenticationContext authenticateContext)
          Feigns the authentication process for a user and creates a token for the authentication without validating the password.
 Token ApplicationServiceGeneric.validateApplicationToken(String tokenKey, ValidationFactor[] clientValidationFactors)
           
 Token ApplicationService.validateApplicationToken(String tokenKey, ValidationFactor[] validationFactors)
          Validates an application token key given validation factors.
 Token ApplicationServiceGeneric.validateUserToken(String userTokenKey, ValidationFactor[] validationFactors, String applicationName)
           
 Token ApplicationService.validateUserToken(String userTokenKey, ValidationFactor[] validationFactors, String application)
          Validates a user token key given validation factors and checks that the user is allowed to authenticate with the specified application
 

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

Methods in com.atlassian.crowd.manager.directory that return types with arguments of type Token
 List<Token> DirectoryManagerGeneric.searchTokens(EntityQuery query)
           
 List<Token> DirectoryManager.searchTokens(EntityQuery query)
          Returns a list of users matching the given query.
 

Uses of Token in com.atlassian.crowd.model.token
 

Methods in com.atlassian.crowd.model.token that return Token
 Token TokenDAOProxy.add(Token token)
           
 Token TokenDAOMemory.add(Token token)
           
 Token TokenDAOHibernate.add(Token token)
           
 Token TokenDAO.add(Token token)
           
 Token TokenDAOProxy.findByID(long ID)
           
 Token TokenDAOMemory.findByID(long ID)
           
 Token TokenDAOHibernate.findByID(long ID)
           
 Token TokenDAO.findByID(long ID)
           
 Token TokenDAOProxy.findByIdentifierHash(String identifierHash)
           
 Token TokenDAOMemory.findByIdentifierHash(String identifierHash)
           
 Token TokenDAOHibernate.findByIdentifierHash(String identifierHash)
           
 Token TokenDAO.findByIdentifierHash(String identifierHash)
           
 Token TokenDAOProxy.findByRandomHash(String randomHash)
           
 Token TokenDAOMemory.findByRandomHash(String randomHash)
           
 Token TokenDAOHibernate.findByRandomHash(String randomHash)
           
 Token TokenDAO.findByRandomHash(String randomHash)
           
 Token TokenDAOProxy.update(Token token)
           
 Token TokenDAOMemory.update(Token token)
           
 Token TokenDAOHibernate.update(Token token)
           
 Token TokenDAO.update(Token token)
           
 

Methods in com.atlassian.crowd.model.token that return types with arguments of type Token
 Collection<Token> TokenDAOMemory.loadAll()
          TokenDAOPersistence.loadAll()
 Collection<Token> TokenDAOHibernate.loadAll()
          TokenDAOPersistence.loadAll()
 Collection<Token> TokenDAOPersistence.loadAll()
          Used when switching implementations.
 List<Token> TokenDAOProxy.search(EntityQuery query)
           
 List<Token> TokenDAOMemory.search(EntityQuery query)
           
 List<Token> TokenDAOHibernate.search(EntityQuery query)
           
 List<Token> TokenDAO.search(EntityQuery query)
           
 

Methods in com.atlassian.crowd.model.token with parameters of type Token
 Token TokenDAOProxy.add(Token token)
           
 Token TokenDAOMemory.add(Token token)
           
 Token TokenDAOHibernate.add(Token token)
           
 Token TokenDAO.add(Token token)
           
 void TokenDAOProxy.remove(Token token)
           
 void TokenDAOMemory.remove(Token token)
           
 void TokenDAOHibernate.remove(Token token)
           
 void TokenDAO.remove(Token token)
           
 Token TokenDAOProxy.update(Token token)
           
 Token TokenDAOMemory.update(Token token)
           
 Token TokenDAOHibernate.update(Token token)
           
 Token TokenDAO.update(Token token)
           
 

Method parameters in com.atlassian.crowd.model.token with type arguments of type Token
 void TokenDAOMemory.saveAll(Collection<Token> tokens)
          TokenDAOPersistence.saveAll()
 void TokenDAOHibernate.saveAll(Collection<Token> tokens)
          TokenDAOPersistence.saveAll()
 void TokenDAOPersistence.saveAll(Collection<Token> tokens)
          Used when switching implementations.
 



Copyright © 2009 Atlassian Pty Ltd. All Rights Reserved.