public class TokenDAOHibernate extends HibernateDao<Token> implements TokenDAO
batchFinder, batchProcessor, logger, statelessSessionBatchProcessor, timeSource
sessionFactory
Constructor and Description |
---|
TokenDAOHibernate(HQLQueryTranslater hqlQueryTranslater) |
Modifier and Type | Method and Description |
---|---|
Token |
add(Token token)
Persists a new token.
|
Token |
findByID(long ID) |
Token |
findByIdentifierHash(String identifierHash)
Finds token by identifier hash.
|
Token |
findByRandomHash(String randomHash)
Finds token by random hash.
|
Class<Token> |
getPersistentClass()
All subclasses of HibernateDao must implement this method for
HibernateDao.load(Serializable) to work
correctly. |
Collection<Token> |
loadAll()
Used when switching implementations.
|
void |
remove(long directoryId,
String name)
Remove token.
|
void |
remove(Token token)
Removes a token.
|
void |
removeAll()
Wipes all tokens from the store.
|
void |
removeAll(long directoryId)
Remove all tokens associated with the given directory id.
|
void |
removeExcept(long directoryId,
String name,
String exclusionToken)
Remove all tokens for the user except for the token
specified by
exclusionToken . |
void |
removeExpiredTokens(Date currentTime,
long maxLifeInSeconds)
Remove all tokens that have expired.
|
void |
saveAll(Collection<Token> tokens)
Used when switching implementations.
|
List<Token> |
search(EntityQuery<? extends Token> query)
Searches for token based on criteria.
|
Token |
update(Token token) |
createDeleteQuery, createDeleteQuery, createHibernateQuery, createQuery, createQuery, executeHQLQuery, findAllInternal, findByProperties, findByPropertiesOptional, findByProperty, findByProperty, findByPropertyOptional, findByPropertyOrThrow, load, load, loadOptional, loadReference, loadReference, remove, removeByIdIfPresent, save, saveOrUpdate, session, setBatchFinder, setBatchProcessor, setClock, setStatelessSessionBatchProcessor, toPredicates, update
setSessionFactory, withStatelessSession
public TokenDAOHibernate(HQLQueryTranslater hqlQueryTranslater)
public Token add(Token token) throws ObjectAlreadyExistsException
SessionTokenStorage
add
in interface SessionTokenStorage
token
- Token.ObjectAlreadyExistsException
- if a token with the same identifier hash already exists.public Token findByID(long ID) throws ObjectNotFoundException
ObjectNotFoundException
public Token findByIdentifierHash(String identifierHash) throws ObjectNotFoundException
SessionTokenStorage
findByIdentifierHash
in interface SessionTokenStorage
identifierHash
- Identifier hash.ObjectNotFoundException
- if the token identified by the identifier hash cannot be found.public Token findByRandomHash(String randomHash) throws ObjectNotFoundException
SessionTokenStorage
findByRandomHash
in interface SessionTokenStorage
randomHash
- Random hash.ObjectNotFoundException
- if the token identified by the random hash cannot be found.public Class<Token> getPersistentClass()
HibernateDao
HibernateDao.load(Serializable)
to work
correctly.getPersistentClass
in class HibernateDao<Token>
public Collection<Token> loadAll()
TokenDAO
public void remove(Token token)
SessionTokenStorage
remove
in interface SessionTokenStorage
token
- Token.public void remove(long directoryId, String name)
SessionTokenStorage
remove
in interface SessionTokenStorage
directoryId
- Directory id.name
- User or application name.public void removeExcept(long directoryId, String name, String exclusionToken)
SessionTokenStorage
exclusionToken
.removeExcept
in interface SessionTokenStorage
directoryId
- Directory id.name
- User or application name.exclusionToken
- the random hash of the token to retain, if presentpublic void removeExpiredTokens(Date currentTime, long maxLifeInSeconds)
SessionTokenStorage
removeExpiredTokens
in interface SessionTokenStorage
currentTime
- Current datemaxLifeInSeconds
- Max lifespan for tokens, unless they specific a shorter one.public void removeAll(long directoryId)
SessionTokenStorage
removeAll
in interface SessionTokenStorage
directoryId
- Directory id.public void removeAll()
SessionTokenStorage
removeAll
in interface SessionTokenStorage
public void saveAll(Collection<Token> tokens)
TokenDAO
public List<Token> search(EntityQuery<? extends Token> query)
SearchableTokenStorage
search
in interface SearchableTokenStorage
query
- Query.public Token update(Token token)
update
in interface SessionTokenStorage
token
- token to update.Copyright © 2019 Atlassian. All rights reserved.