@Transactional public class SimpleTokenManagerImpl extends Object implements TokenManager
| Constructor and Description |
|---|
SimpleTokenManagerImpl(SessionTokenStorage tokenDAO) |
| Modifier and Type | Method and Description |
|---|---|
Token |
add(Token token)
Persists a new token.
|
Token |
findByIdentifierHash(String identifierHash)
Finds token by identifier hash.
|
Token |
findByRandomHash(String randomHash)
Finds token by random hash.
|
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 maxLifeSeconds)
Remove all tokens that have expired.
|
Token |
update(Token token) |
public SimpleTokenManagerImpl(SessionTokenStorage tokenDAO)
public Token findByRandomHash(String randomHash) throws ObjectNotFoundException
SessionTokenStoragefindByRandomHash in interface SessionTokenStoragerandomHash - Random hash.ObjectNotFoundException - if the token identified by the random hash cannot be found.public Token findByIdentifierHash(String identifierHash) throws ObjectNotFoundException
SessionTokenStoragefindByIdentifierHash in interface SessionTokenStorageidentifierHash - Identifier hash.ObjectNotFoundException - if the token identified by the identifier hash cannot be found.@Transactional(propagation=NESTED,
rollbackFor=ObjectAlreadyExistsException.class)
public Token add(Token token)
throws ObjectAlreadyExistsException
SessionTokenStorageadd in interface SessionTokenStoragetoken - Token.ObjectAlreadyExistsException - if a token with the same identifier hash already exists.public Token update(Token token) throws ObjectNotFoundException
update in interface SessionTokenStoragetoken - token to update.ObjectNotFoundExceptionpublic void remove(Token token)
SessionTokenStorageremove in interface SessionTokenStoragetoken - Token.public void remove(long directoryId,
String name)
SessionTokenStorageremove in interface SessionTokenStoragedirectoryId - Directory id.name - User or application name.public void removeExcept(long directoryId,
String name,
String exclusionToken)
SessionTokenStorageexclusionToken.removeExcept in interface SessionTokenStoragedirectoryId - Directory id.name - User or application name.exclusionToken - the random hash of the token to retain, if presentpublic void removeAll(long directoryId)
SessionTokenStorageremoveAll in interface SessionTokenStoragedirectoryId - Directory id.public void removeExpiredTokens(Date currentTime, long maxLifeSeconds)
SessionTokenStorageremoveExpiredTokens in interface SessionTokenStoragecurrentTime - Current datemaxLifeSeconds - Max lifespan for tokens, unless they specific a shorter one.public void removeAll()
SessionTokenStorageremoveAll in interface SessionTokenStorageCopyright © 2017 Atlassian. All rights reserved.