Class VaultCredentialStore
- java.lang.Object
-
- org.wildfly.security.credential.store.CredentialStoreSpi
-
- org.wildfly.security.credential.store.impl.VaultCredentialStore
-
public final class VaultCredentialStore extends CredentialStoreSpi
Credential store implementation which uses the legacy "vault" format.- Author:
- David M. Lloyd
-
-
Field Summary
Fields Modifier and Type Field Description private SecretKeyadminKeyprivate Map<String,byte[]>dataprivate Filelocationprivate static StringLOCATIONprivate booleanmodifiableprivate static List<String>validAttribtuesstatic StringVAULT_CREDENTIAL_STORE-
Fields inherited from class org.wildfly.security.credential.store.CredentialStoreSpi
initialized
-
-
Constructor Summary
Constructors Constructor Description VaultCredentialStore()Construct a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidflush()Flush the credential store contents to storage.Set<String>getAliases()Returns credential aliases stored in this store asSet<String>.voidinitialize(Map<String,String> attributes, CredentialStore.ProtectionParameter protectionParameter, Provider[] providers)Initialize credential store service with given attributes.booleanisModifiable()Check if credential store service supports modification of its storevoidremove(String credentialAlias, Class<? extends Credential> credentialType, String credentialAlgorithm, AlgorithmParameterSpec parameterSpec)Remove the credentialType with from given alias from the credential store service.<C extends Credential>
Cretrieve(String credentialAlias, Class<C> credentialType, String credentialAlgorithm, AlgorithmParameterSpec parameterSpec, CredentialStore.ProtectionParameter protectionParameter)Retrieve the credential stored in the store under the given alias, matching the given criteria.voidstore(String credentialAlias, Credential credential, CredentialStore.ProtectionParameter protectionParameter)Store credential to the credential store service under the given alias.-
Methods inherited from class org.wildfly.security.credential.store.CredentialStoreSpi
exists, getCredentialTypesForAlias, isInitialized, validateAttribute
-
-
-
-
Field Detail
-
VAULT_CREDENTIAL_STORE
public static final String VAULT_CREDENTIAL_STORE
- See Also:
- Constant Field Values
-
LOCATION
private static final String LOCATION
- See Also:
- Constant Field Values
-
adminKey
private SecretKey adminKey
-
location
private File location
-
modifiable
private volatile boolean modifiable
-
-
Method Detail
-
initialize
public void initialize(Map<String,String> attributes, CredentialStore.ProtectionParameter protectionParameter, Provider[] providers) throws CredentialStoreException
Description copied from class:CredentialStoreSpiInitialize credential store service with given attributes. This procedure should setCredentialStoreSpi.initializedafter successful initialization.- Specified by:
initializein classCredentialStoreSpi- Parameters:
attributes- attributes to used to pass information to credential store serviceprotectionParameter- the store-wide protection parameter to apply, ornullfor noneproviders- providers to be injected into SPI implementation to get custom object instances of various type from, ornullfor none- Throws:
CredentialStoreException- if initialization fails due to any reason
-
isModifiable
public boolean isModifiable()
Description copied from class:CredentialStoreSpiCheck if credential store service supports modification of its store- Specified by:
isModifiablein classCredentialStoreSpi- Returns:
truein case of modification of the store is supported,falseotherwise
-
store
public void store(String credentialAlias, Credential credential, CredentialStore.ProtectionParameter protectionParameter) throws CredentialStoreException, UnsupportedCredentialTypeException
Description copied from class:CredentialStoreSpiStore credential to the credential store service under the given alias. If given alias already contains specific credential type type the credential replaces older one. Note:CredentialStoreSpisupports storing of multiple entries (credential types) per alias. Each must be of different credential type, or differing algorithm, or differing parameters.- Specified by:
storein classCredentialStoreSpi- Parameters:
credentialAlias- to store the credential to the storecredential- instance ofCredentialto storeprotectionParameter- the protection parameter to apply to the entry, ornullfor none- Throws:
CredentialStoreException- when the credential cannot be storedUnsupportedCredentialTypeException- when the credentialType is not supported
-
retrieve
public <C extends Credential> C retrieve(String credentialAlias, Class<C> credentialType, String credentialAlgorithm, AlgorithmParameterSpec parameterSpec, CredentialStore.ProtectionParameter protectionParameter) throws CredentialStoreException
Description copied from class:CredentialStoreSpiRetrieve the credential stored in the store under the given alias, matching the given criteria.- Specified by:
retrievein classCredentialStoreSpi- Type Parameters:
C- the credential type- Parameters:
credentialAlias- to find the credential in the storecredentialType- the credential type class (must not benull)credentialAlgorithm- the credential algorithm to match, ornullto match any algorithmparameterSpec- the parameter specification to match, ornullto match any parametersprotectionParameter- the protection parameter to use to access the entry, ornullfor none- Returns:
- instance of
Credentialstored in the store, ornullif the credential is not found - Throws:
CredentialStoreException- if the credential cannot be retrieved due to an error
-
remove
public void remove(String credentialAlias, Class<? extends Credential> credentialType, String credentialAlgorithm, AlgorithmParameterSpec parameterSpec) throws CredentialStoreException
Description copied from class:CredentialStoreSpiRemove the credentialType with from given alias from the credential store service.- Specified by:
removein classCredentialStoreSpi- Parameters:
credentialAlias- alias to removecredentialType- the credential type class to match (must not benull)credentialAlgorithm- the credential algorithm to match, ornullto match all algorithmsparameterSpec- the credential parameters to match, ornullto match all parameters- Throws:
CredentialStoreException- if the credential cannot be removed due to an error
-
flush
public void flush() throws CredentialStoreExceptionDescription copied from class:CredentialStoreSpiFlush the credential store contents to storage. If the credential store does not support or require explicit flushing, this method should do nothing and simply return.- Overrides:
flushin classCredentialStoreSpi- Throws:
CredentialStoreException- if the flush fails for some reason.
-
getAliases
public Set<String> getAliases() throws UnsupportedOperationException, CredentialStoreException
Description copied from class:CredentialStoreSpiReturns credential aliases stored in this store asSet<String>. It is not mandatory to override this method (throwsUnsupportedOperationExceptionby default).- Overrides:
getAliasesin classCredentialStoreSpi- Returns:
Set<String>of all keys stored in this store- Throws:
UnsupportedOperationException- when this method is not supported by the underlying credential storeCredentialStoreException- if there is any problem with internal store
-
-