T
- the type of secrets this store handles.public final class ThreadPoolSecretStore<T extends Secret> extends Object implements SecretStore<T>
CLOCK, LEASE_EXPIRY_DURATION
Modifier and Type | Method and Description |
---|---|
<S extends T> |
getActive(Purpose<S> purpose)
Returns the active secret for the given purpose.
|
<S extends T> |
getNamed(Purpose<S> purpose,
String name)
Returns the named secret from this store.
|
Class<T> |
getStoredType()
The top-level class that this store is capable of storing.
|
<S extends T> |
getValid(Purpose<S> purpose)
Returns all valid secrets for the given purpose from this store.
|
void |
refresh()
Indicates that the store should refresh its secrets from the backing storage mechanism.
|
void |
retire(Purpose<? extends T> purpose,
String secretIdToRetire)
Retires the given secret for the given purpose.
|
void |
revoke(String secretId)
Revokes the given secret for all purposes in this store.
|
void |
rotate(Purpose<? extends T> purpose,
String newActiveSecretId)
Rotates the active secret for the given purpose.
|
static <S extends Secret> |
wrap(SecretStore<S> store)
Wraps the given store in an asynchronous thread-pool executor using the system
ForkJoinPool.commonPool() . |
static <S extends Secret> |
wrap(SecretStore<S> store,
ExecutorService executor)
Wraps the given store in an asynchronous thread-pool executor using the given thread pool.
|
public static <S extends Secret> ThreadPoolSecretStore<S> wrap(SecretStore<S> store, ExecutorService executor)
S
- the type of secrets the store manages.store
- the store to wrap.executor
- the thread pool.public static <S extends Secret> ThreadPoolSecretStore<S> wrap(SecretStore<S> store)
ForkJoinPool.commonPool()
.S
- the type of secrets the store manages.store
- the store to wrap.public Class<T> getStoredType()
SecretStore
getStoredType
in interface SecretStore<T extends Secret>
CryptoKey
for key-stores, GenericSecret
for password stores, or
Secret
if the store is capable of storing any type of secret.public <S extends T> Promise<S,NoSuchSecretException> getActive(Purpose<S> purpose)
SecretStore
getActive
in interface SecretStore<T extends Secret>
S
- the type of secret.purpose
- the purpose for which a secret is required.public <S extends T> Promise<S,NoSuchSecretException> getNamed(Purpose<S> purpose, String name)
SecretStore
getNamed
in interface SecretStore<T extends Secret>
S
- the type of secret.purpose
- the secret purpose.name
- the name (stable id) of the secret.Optional.empty()
if no such secret exists.public <S extends T> Promise<Stream<S>,NeverThrowsException> getValid(Purpose<S> purpose)
SecretStore
getValid
in interface SecretStore<T extends Secret>
S
- the type of secret.purpose
- the purpose.public void refresh()
SecretStore
refresh
in interface SecretStore<T extends Secret>
public void rotate(Purpose<? extends T> purpose, String newActiveSecretId)
SecretStore
UnsupportedOperationException
if the store does not implement rotation directly. Some stores natively
support rotation, in which case this should be done using store-specific interfaces.rotate
in interface SecretStore<T extends Secret>
purpose
- the purpose for which to rotate the active secret.newActiveSecretId
- the stable id of the new active secret.public void retire(Purpose<? extends T> purpose, String secretIdToRetire)
SecretStore
UnsupportedOperationException
if the store does
not implement rotation directly. Some stores natively support rotation, in which case this should be done using
store-specific interfaces. If the given secret is the current active secret for the purpose then the previous
active secret will become active. If there are no still-valid previous secrets then there will be no active
secret for that purpose and any attempts to use it will generate NoSuchSecretException
s.retire
in interface SecretStore<T extends Secret>
purpose
- the purpose for which to retire the secret.secretIdToRetire
- the stable id of the secret to retire.public void revoke(String secretId)
SecretStore
NoSuchSecretException
. It is therefore advised to rotate a new secret into use for all such
purposes before revoking the active secret.
Note that if the store does not contain the named secret then it will silently ignore this request.
revoke
in interface SecretStore<T extends Secret>
secretId
- the stable id of the secret to revoke.Copyright © 2010-2018, ForgeRock All Rights Reserved.