Class MapCredentialStore
- java.lang.Object
-
- org.wildfly.security.credential.store.CredentialStoreSpi
-
- org.wildfly.security.credential.store.impl.MapCredentialStore
-
public final class MapCredentialStore extends CredentialStoreSpi
A map-backed credential store implementation.- Author:
- David M. Lloyd
-
-
Field Summary
Fields Modifier and Type Field Description private Map<String,CredentialSource>
credentialSources
static String
MAP_CREDENTIAL_STORE
private boolean
modifiable
-
Fields inherited from class org.wildfly.security.credential.store.CredentialStoreSpi
initialized
-
-
Constructor Summary
Constructors Constructor Description MapCredentialStore()
Construct a new, modifiable instance backed by a new concurrent map.MapCredentialStore(ConcurrentMap<String,CredentialSource> credentialSources, boolean modifiable)
Construct a new instance.MapCredentialStore(Map<String,CredentialSource> credentialSources)
Construct a new unmodifiable instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
exists(String credentialAlias, Class<? extends Credential> credentialType)
Check whether credential store service has an entry associated with the given credential alias of specified credential type.Set<String>
getAliases()
Returns credential aliases stored in this store asSet<String>
.void
initialize(Map<String,String> attributes, CredentialStore.ProtectionParameter protectionParameter, Provider[] providers)
Initialize credential store service with given attributes.boolean
isModifiable()
Check if credential store service supports modification of its storevoid
remove(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.void
store(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
flush, getCredentialTypesForAlias, isInitialized, validateAttribute
-
-
-
-
Field Detail
-
MAP_CREDENTIAL_STORE
public static final String MAP_CREDENTIAL_STORE
- See Also:
- Constant Field Values
-
credentialSources
private final Map<String,CredentialSource> credentialSources
-
modifiable
private final boolean modifiable
-
-
Constructor Detail
-
MapCredentialStore
public MapCredentialStore(ConcurrentMap<String,CredentialSource> credentialSources, boolean modifiable)
Construct a new instance.- Parameters:
credentialSources
- the credential sources map to use as the backing map for this store (must not benull
)modifiable
-true
to allow modifications via the API,false
otherwise
-
MapCredentialStore
public MapCredentialStore(Map<String,CredentialSource> credentialSources)
Construct a new unmodifiable instance.- Parameters:
credentialSources
- the credential sources map to use (must not benull
)
-
MapCredentialStore
public MapCredentialStore()
Construct a new, modifiable instance backed by a new concurrent map.
-
-
Method Detail
-
initialize
public void initialize(Map<String,String> attributes, CredentialStore.ProtectionParameter protectionParameter, Provider[] providers) throws CredentialStoreException
Description copied from class:CredentialStoreSpi
Initialize credential store service with given attributes. This procedure should setCredentialStoreSpi.initialized
after successful initialization.- Specified by:
initialize
in classCredentialStoreSpi
- Parameters:
attributes
- attributes to used to pass information to credential store serviceprotectionParameter
- the store-wide protection parameter to apply, ornull
for noneproviders
- providers to be injected into SPI implementation to get custom object instances of various type from, ornull
for none- Throws:
CredentialStoreException
- if initialization fails due to any reason
-
isModifiable
public boolean isModifiable()
Description copied from class:CredentialStoreSpi
Check if credential store service supports modification of its store- Specified by:
isModifiable
in classCredentialStoreSpi
- Returns:
true
in case of modification of the store is supported,false
otherwise
-
getAliases
public Set<String> getAliases() throws UnsupportedOperationException, CredentialStoreException
Description copied from class:CredentialStoreSpi
Returns credential aliases stored in this store asSet<String>
. It is not mandatory to override this method (throwsUnsupportedOperationException
by default).- Overrides:
getAliases
in 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
-
exists
public boolean exists(String credentialAlias, Class<? extends Credential> credentialType) throws CredentialStoreException
Description copied from class:CredentialStoreSpi
Check whether credential store service has an entry associated with the given credential alias of specified credential type. The default implementation simply attempts to retrieve the credential without a protection parameter, and returnstrue
if any credential was returned. Credential stores which use a protection parameter should override this method.- Overrides:
exists
in classCredentialStoreSpi
- Parameters:
credentialAlias
- key to check existencecredentialType
- to class of credential to look for- Returns:
true
in case key exist in store otherwisefalse
- Throws:
CredentialStoreException
- when there is a problem with credential store
-
store
public void store(String credentialAlias, Credential credential, CredentialStore.ProtectionParameter protectionParameter) throws CredentialStoreException, UnsupportedCredentialTypeException
Description copied from class:CredentialStoreSpi
Store 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:CredentialStoreSpi
supports storing of multiple entries (credential types) per alias. Each must be of different credential type, or differing algorithm, or differing parameters.- Specified by:
store
in classCredentialStoreSpi
- Parameters:
credentialAlias
- to store the credential to the storecredential
- instance ofCredential
to storeprotectionParameter
- the protection parameter to apply to the entry, ornull
for 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:CredentialStoreSpi
Retrieve the credential stored in the store under the given alias, matching the given criteria.- Specified by:
retrieve
in 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, ornull
to match any algorithmparameterSpec
- the parameter specification to match, ornull
to match any parametersprotectionParameter
- the protection parameter to use to access the entry, ornull
for none- Returns:
- instance of
Credential
stored in the store, ornull
if 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:CredentialStoreSpi
Remove the credentialType with from given alias from the credential store service.- Specified by:
remove
in classCredentialStoreSpi
- Parameters:
credentialAlias
- alias to removecredentialType
- the credential type class to match (must not benull
)credentialAlgorithm
- the credential algorithm to match, ornull
to match all algorithmsparameterSpec
- the credential parameters to match, ornull
to match all parameters- Throws:
CredentialStoreException
- if the credential cannot be removed due to an error
-
-