Class CachedKeyManager
- java.lang.Object
-
- org.apache.archiva.redback.keys.AbstractKeyManager
-
- org.apache.archiva.redback.keys.cached.CachedKeyManager
-
- All Implemented Interfaces:
KeyManager
@Service("keyManager#cached") public class CachedKeyManager extends AbstractKeyManager implements KeyManagerCachedKeyManager- Author:
- Joakim Erdfelt
-
-
Field Summary
-
Fields inherited from class org.apache.archiva.redback.keys.AbstractKeyManager
log
-
-
Constructor Summary
Constructors Constructor Description CachedKeyManager()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthenticationKeyaddKey(AuthenticationKey key)voidclearCache()AuthenticationKeycreateKey(String principal, String purpose, int expirationMinutes)Create a key (and save it to the store) for the specified principal.voiddeleteKey(String key)Delete a key from the underlying store.voiddeleteKey(AuthenticationKey key)Delete a key from the underlying store.voideraseDatabase()AuthenticationKeyfindKey(String key)Attempt to find a specific key in the store.List<AuthenticationKey>getAllKeys()StringgetId()String identifying the key manager implementation.KeyManagergetKeyImpl()org.apache.archiva.components.cache.CachegetKeysCache()voidsetKeyImpl(KeyManager keyImpl)voidsetKeysCache(org.apache.archiva.components.cache.Cache<String,AuthenticationKey> keysCache)-
Methods inherited from class org.apache.archiva.redback.keys.AbstractKeyManager
assertNotExpired, generateUUID, getNowGMT, isRandomMode, removeExpiredKeys, setRandomMode
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.archiva.redback.keys.KeyManager
removeExpiredKeys
-
-
-
-
Constructor Detail
-
CachedKeyManager
public CachedKeyManager()
-
-
Method Detail
-
addKey
public AuthenticationKey addKey(AuthenticationKey key)
- Specified by:
addKeyin interfaceKeyManager
-
createKey
public AuthenticationKey createKey(String principal, String purpose, int expirationMinutes) throws KeyManagerException
Description copied from interface:KeyManagerCreate a key (and save it to the store) for the specified principal.- Specified by:
createKeyin interfaceKeyManager- Parameters:
principal- the principal to generate the key for.purpose- the purpose of the key. (Example: "selfservice password reset", "new user validation", "remember me") This is a purely informational field .expirationMinutes- the amount in minutes until this key expires. (-1 means no expiration)- Returns:
- the key created
- Throws:
KeyManagerException- if there is a fundamental problem with the KeyManager implementation.
-
deleteKey
public void deleteKey(AuthenticationKey key) throws KeyManagerException
Description copied from interface:KeyManagerDelete a key from the underlying store.- Specified by:
deleteKeyin interfaceKeyManager- Parameters:
key- the key to delete.- Throws:
KeyManagerException
-
deleteKey
public void deleteKey(String key) throws KeyManagerException
Description copied from interface:KeyManagerDelete a key from the underlying store.- Specified by:
deleteKeyin interfaceKeyManager- Parameters:
key- the key to delete.- Throws:
KeyManagerException
-
eraseDatabase
public void eraseDatabase()
- Specified by:
eraseDatabasein interfaceKeyManager
-
findKey
public AuthenticationKey findKey(String key) throws KeyManagerException
Description copied from interface:KeyManagerAttempt to find a specific key in the store. NOTE: Implementations of this interface should never return an expired key.- Specified by:
findKeyin interfaceKeyManager- Parameters:
key- the key to find.- Returns:
- the actual key found.
- Throws:
KeyNotFoundException- when the requested, unexpired, key cannot be found.KeyManagerException- when there is a fundamental problem with the KeyManager implementation.
-
getAllKeys
public List<AuthenticationKey> getAllKeys()
- Specified by:
getAllKeysin interfaceKeyManager
-
getId
public String getId()
Description copied from interface:KeyManagerString identifying the key manager implementation.- Specified by:
getIdin interfaceKeyManager- Returns:
- the key manager implementation id.
-
getKeyImpl
public KeyManager getKeyImpl()
-
setKeyImpl
public void setKeyImpl(KeyManager keyImpl)
-
getKeysCache
public org.apache.archiva.components.cache.Cache getKeysCache()
-
setKeysCache
public void setKeysCache(org.apache.archiva.components.cache.Cache<String,AuthenticationKey> keysCache)
-
clearCache
public void clearCache()
-
-