Package org.wildfly.security.auth.realm
Class SimpleMapBackedSecurityRealm
java.lang.Object
org.wildfly.security.auth.realm.SimpleMapBackedSecurityRealm
- All Implemented Interfaces:
SecurityRealm
Simple map-backed security realm. Uses an in-memory copy-on-write map methodology to map user names to
entries. Since this security realm implementation holds all names in memory, it may not be the best choice
for very large security realms.
- Author:
- David M. Lloyd, Darran Lofthouse
-
Field Summary
Fields inherited from interface org.wildfly.security.auth.server.SecurityRealm
EMPTY_REALM -
Constructor Summary
ConstructorsConstructorDescriptionConstruct a new instance.SimpleMapBackedSecurityRealm(Supplier<Provider[]> providers) Construct a new instance.SimpleMapBackedSecurityRealm(NameRewriter rewriter) Construct a new instance.SimpleMapBackedSecurityRealm(NameRewriter rewriter, Supplier<Provider[]> providers) Construct a new instance. -
Method Summary
Modifier and TypeMethodDescriptiongetCredentialAcquireSupport(Class<? extends Credential> credentialType, String algorithmName, AlgorithmParameterSpec parameterSpec) Determine whether a credential of the given type and algorithm is definitely obtainable, possibly obtainable (for] some identities), or definitely not obtainable.getEvidenceVerifySupport(Class<? extends Evidence> evidenceType, String algorithmName) Determine whether a given type of evidence is definitely verifiable, possibly verifiable (for some identities), or definitely not verifiable.getRealmIdentity(Principal principal) Get a handle for to the identity for the given principal in the context of this security realm.voidSet the realm identity map.voidsetPasswordMap(String name, Password password) Deprecated.voidsetPasswordMap(String name, Password password, Attributes attributes) Deprecated.UsesetIdentityMap(Map)instead.voidDeprecated.UsesetIdentityMap(Map)instead.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.wildfly.security.auth.server.SecurityRealm
getCredentialAcquireSupport, getRealmIdentity, getRealmIdentity, handleRealmEvent
-
Constructor Details
-
SimpleMapBackedSecurityRealm
Construct a new instance.- Parameters:
rewriter- the name rewriter to use (cannot benull)
-
SimpleMapBackedSecurityRealm
Construct a new instance.- Parameters:
rewriter- the name rewriter to use (cannot benull)providers- a supplier of providers for use by this realm (cannot benull)
-
SimpleMapBackedSecurityRealm
public SimpleMapBackedSecurityRealm()Construct a new instance. -
SimpleMapBackedSecurityRealm
Construct a new instance.- Parameters:
providers- a supplier of providers for use by this realm (cannot benull)
-
-
Method Details
-
setIdentityMap
Set the realm identity map. Note that the entry map must not be modified after calling this method. If it needs to be changed, pass in a new map that is a copy of the old map with the required changes.- Parameters:
map- the identity map where key is an identity name and value is an identity entry
-
setPasswordMap
Deprecated.UsesetIdentityMap(Map)instead.Set the realm identity map. Note that the entry map must not be modified after calling this method. If it needs to be changed, pass in a new map that is a copy of the old map with the required changes.- Parameters:
map- the identity map
-
setPasswordMap
Deprecated.UsesetIdentityMap(Map)instead.Set the realm identity map to contain a single entry.- Parameters:
name- the entry namepassword- the passwordattributes- the identity attributes
-
setPasswordMap
Deprecated.UsesetIdentityMap(Map)instead.Set the realm identity map to contain a single entry.- Parameters:
name- the entry namepassword- the password
-
getRealmIdentity
Description copied from interface:SecurityRealmGet a handle for to the identity for the given principal in the context of this security realm. Any validation / name mapping is an implementation detail for the realm. The identity may or may not exist. The returned handle must be cleaned up by a call toRealmIdentity.dispose().- Specified by:
getRealmIdentityin interfaceSecurityRealm- Parameters:
principal- the principal which identifies the identity within the realm (must not benull)- Returns:
- the
RealmIdentityfor the provided principal (notnull)
-
getCredentialAcquireSupport
public SupportLevel getCredentialAcquireSupport(Class<? extends Credential> credentialType, String algorithmName, AlgorithmParameterSpec parameterSpec) throws RealmUnavailableException Description copied from interface:SecurityRealmDetermine whether a credential of the given type and algorithm is definitely obtainable, possibly obtainable (for] some identities), or definitely not obtainable.- Specified by:
getCredentialAcquireSupportin interfaceSecurityRealm- Parameters:
credentialType- the exact credential type (must not benull)algorithmName- the algorithm name, ornullif any algorithm is acceptable or the credential type does not support algorithm namesparameterSpec- the algorithm parameters to match, ornullif any parameters are acceptable or the credential type does not support algorithm parameters- Returns:
- the level of support for this credential
- Throws:
RealmUnavailableException- if the realm is not able to handle requests for any reason
-
getEvidenceVerifySupport
public SupportLevel getEvidenceVerifySupport(Class<? extends Evidence> evidenceType, String algorithmName) throws RealmUnavailableException Description copied from interface:SecurityRealmDetermine whether a given type of evidence is definitely verifiable, possibly verifiable (for some identities), or definitely not verifiable.- Specified by:
getEvidenceVerifySupportin interfaceSecurityRealm- Parameters:
evidenceType- the type of evidence to be verified (must not benull)algorithmName- the algorithm name, ornullif any algorithm is acceptable or the evidence type does not support algorithm names- Returns:
- the level of support for this evidence type
- Throws:
RealmUnavailableException- if the realm is not able to handle requests for any reason
-
setIdentityMap(Map)instead.