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

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

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
 java.util.List<Token> MockDirectoryManager.searchTokens(EntityQuery query)
           
 

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

Methods in com.atlassian.crowd.dao.token that return Token
 Token TokenDAOMemory.add(Token token)
           
 Token TokenDAO.add(Token token)
          Persists a new token.
 Token TokenDAOHibernate.add(Token token)
           
 Token TokenDAOMemory.findByID(long ID)
           
 Token TokenDAO.findByID(long ID)
          Finds token by its id.
 Token TokenDAOHibernate.findByID(long ID)
           
 Token TokenDAOMemory.findByIdentifierHash(java.lang.String identifierHash)
           
 Token TokenDAO.findByIdentifierHash(java.lang.String identifierHash)
          Finds token by identifier hash.
 Token TokenDAOHibernate.findByIdentifierHash(java.lang.String identifierHash)
           
 Token TokenDAOMemory.findByRandomHash(java.lang.String randomHash)
           
 Token TokenDAO.findByRandomHash(java.lang.String randomHash)
          Finds token by random hash.
 Token TokenDAOHibernate.findByRandomHash(java.lang.String randomHash)
           
 Token TokenDAOMemory.update(Token token)
           
 Token TokenDAO.update(Token token)
           
 Token TokenDAOHibernate.update(Token token)
           
 

Methods in com.atlassian.crowd.dao.token that return types with arguments of type Token
 java.util.Collection<Token> TokenDAOMemory.loadAll()
          TokenDAOPersistence.loadAll()
 java.util.Collection<Token> TokenDAO.loadAll()
          Used when switching implementations.
 java.util.Collection<Token> TokenDAOHibernate.loadAll()
          TokenDAOPersistence.loadAll()
 java.util.List<Token> TokenDAOMemory.search(EntityQuery query)
           
 java.util.List<Token> TokenDAO.search(EntityQuery query)
          Searches for token based on criteria.
 java.util.List<Token> TokenDAOHibernate.search(EntityQuery query)
           
 

Methods in com.atlassian.crowd.dao.token with parameters of type Token
 Token TokenDAOMemory.add(Token token)
           
 Token TokenDAO.add(Token token)
          Persists a new token.
 Token TokenDAOHibernate.add(Token token)
           
 void TokenDAOMemory.remove(Token token)
           
 void TokenDAO.remove(Token token)
          Removes a token.
 void TokenDAOHibernate.remove(Token token)
           
 Token TokenDAOMemory.update(Token token)
           
 Token TokenDAO.update(Token token)
           
 Token TokenDAOHibernate.update(Token token)
           
 

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

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(java.lang.Object source, Application application, Token token)
           
 

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

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

Constructors in com.atlassian.crowd.event.token with parameters of type Token
TokenInvalidatedEvent(java.lang.Object source, 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(java.lang.Object source, User user, Application application, Token token)
           
 

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

Methods in com.atlassian.crowd.manager.authentication that return Token
 Token TokenAuthenticationManagerImpl.authenticateApplication(ApplicationAuthenticationContext authenticationContext)
           
 Token AliasingAwareTokenAuthenticationManager.authenticateApplication(ApplicationAuthenticationContext authenticationContext)
           
 Token TokenAuthenticationManager.authenticateApplication(ApplicationAuthenticationContext authenticationContext)
          Authenticates an application and generates an authentication token.
 Token TokenAuthenticationManagerImpl.authenticateUser(UserAuthenticationContext authenticateContext)
           
 Token AliasingAwareTokenAuthenticationManager.authenticateUser(UserAuthenticationContext authenticateContext)
           
 Token TokenAuthenticationManager.authenticateUser(UserAuthenticationContext authenticateContext)
          Authenticates a user and and generates an authentication token.
 Token TokenAuthenticationManagerImpl.authenticateUser(UserAuthenticationContext authenticationContext, boolean validatePassword, boolean ignoreCache)
           
 Token TokenAuthenticationManagerImpl.authenticateUserWithoutValidatingPassword(UserAuthenticationContext authenticateContext)
           
 Token AliasingAwareTokenAuthenticationManager.authenticateUserWithoutValidatingPassword(UserAuthenticationContext authenticateContext)
           
 Token TokenAuthenticationManager.authenticateUserWithoutValidatingPassword(UserAuthenticationContext authenticateContext)
          Feigns the authentication process for a user and creates a token for the authentication without validating the password.
protected  Token TokenAuthenticationManagerImpl.generateApplicationToken(ApplicationAuthenticationContext authenticationContext)
           
protected  Token TokenAuthenticationManagerImpl.generateUserToken(long directoryID, AuthenticationContext authenticationContext)
          This method will return a Token based on the passed in parameters.
protected  Token TokenAuthenticationManagerImpl.genericValidateToken(java.lang.String token, ValidationFactor[] validationFactors)
          Will validate a token key with the given ValidationFactor's against one (if it exists) in the datastore.
 Token TokenAuthenticationManagerImpl.validateApplicationToken(java.lang.String tokenKey, ValidationFactor[] clientValidationFactors)
           
 Token AliasingAwareTokenAuthenticationManager.validateApplicationToken(java.lang.String tokenKey, ValidationFactor[] validationFactors)
           
 Token TokenAuthenticationManager.validateApplicationToken(java.lang.String tokenKey, ValidationFactor[] validationFactors)
          Validates an application token key given validation factors.
 Token TokenAuthenticationManagerImpl.validateUserToken(java.lang.String userTokenKey, ValidationFactor[] validationFactors, java.lang.String applicationName)
           
 Token AliasingAwareTokenAuthenticationManager.validateUserToken(java.lang.String userTokenKey, ValidationFactor[] validationFactors, java.lang.String application)
           
 Token TokenAuthenticationManager.validateUserToken(java.lang.String userTokenKey, ValidationFactor[] validationFactors, java.lang.String application)
          Validates a user token key given validation factors and checks that the user is allowed to authenticate with the specified application
 

Methods in com.atlassian.crowd.manager.authentication that return types with arguments of type Token
 java.util.List<Token> TokenAuthenticationManagerImpl.searchTokens(EntityQuery query)
           
 java.util.List<Token> AliasingAwareTokenAuthenticationManager.searchTokens(EntityQuery<Token> query)
           
 java.util.List<Token> TokenAuthenticationManager.searchTokens(EntityQuery<Token> query)
          Returns a list of users matching the given query.
 

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

Method parameters in com.atlassian.crowd.manager.authentication with type arguments of type Token
 java.util.List<Token> AliasingAwareTokenAuthenticationManager.searchTokens(EntityQuery<Token> query)
           
 java.util.List<Token> TokenAuthenticationManager.searchTokens(EntityQuery<Token> query)
          Returns a list of users matching the given query.
 

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

Methods in com.atlassian.crowd.manager.token that return Token
 Token TokenManagerImpl.add(Token token)
           
 Token TokenManager.add(Token token)
           
 Token TokenManagerImpl.findByID(long ID)
           
 Token TokenManager.findByID(long ID)
           
 Token TokenManagerImpl.findByIdentifierHash(java.lang.String identifierHash)
           
 Token TokenManager.findByIdentifierHash(java.lang.String identifierHash)
           
 Token TokenManagerImpl.findByRandomHash(java.lang.String randomHash)
           
 Token TokenManager.findByRandomHash(java.lang.String randomHash)
           
 Token TokenManagerImpl.update(Token token)
           
 Token TokenManager.update(Token token)
           
 

Methods in com.atlassian.crowd.manager.token that return types with arguments of type Token
 java.util.List<Token> TokenManagerImpl.search(EntityQuery query)
           
 java.util.List<Token> TokenManager.search(EntityQuery query)
           
 

Methods in com.atlassian.crowd.manager.token with parameters of type Token
 Token TokenManagerImpl.add(Token token)
           
 Token TokenManager.add(Token token)
           
 void TokenManagerImpl.remove(Token token)
           
 void TokenManager.remove(Token token)
           
 Token TokenManagerImpl.update(Token token)
           
 Token TokenManager.update(Token token)
           
 

Uses of Token in com.atlassian.crowd.manager.token.factory
 

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



Copyright © 2012 Atlassian. All Rights Reserved.