Package org.wildfly.security.auth.realm
Class SimpleMapBackedSecurityRealm
- java.lang.Object
-
- org.wildfly.security.auth.realm.SimpleMapBackedSecurityRealm
-
- All Implemented Interfaces:
SecurityRealm
public class SimpleMapBackedSecurityRealm extends Object implements 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
Constructors Constructor Description SimpleMapBackedSecurityRealm()Construct 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
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description SupportLevelgetCredentialAcquireSupport(Class<? extends Credential> credentialType, String algorithmName, AlgorithmParameterSpec parameterSpec)SupportLevelgetEvidenceVerifySupport(Class<? extends Evidence> evidenceType, String algorithmName)RealmIdentitygetRealmIdentity(Principal principal)voidsetIdentityMap(Map<String,SimpleRealmEntry> map)Set the realm identity map.voidsetPasswordMap(String name, Password password)Deprecated.UsesetIdentityMap(Map)instead.voidsetPasswordMap(String name, Password password, Attributes attributes)Deprecated.UsesetIdentityMap(Map)instead.voidsetPasswordMap(Map<String,SimpleRealmEntry> map)Deprecated.UsesetIdentityMap(Map)instead.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.wildfly.security.auth.server.SecurityRealm
getCredentialAcquireSupport, getRealmIdentity, getRealmIdentity, handleRealmEvent
-
-
-
-
Constructor Detail
-
SimpleMapBackedSecurityRealm
public SimpleMapBackedSecurityRealm(NameRewriter rewriter)
Construct a new instance.- Parameters:
rewriter- the name rewriter to use (cannot benull)
-
SimpleMapBackedSecurityRealm
public SimpleMapBackedSecurityRealm(NameRewriter rewriter, Supplier<Provider[]> providers)
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.
-
-
Method Detail
-
setIdentityMap
public void setIdentityMap(Map<String,SimpleRealmEntry> map)
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 public void setPasswordMap(Map<String,SimpleRealmEntry> map)
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 public void setPasswordMap(String name, Password password, Attributes attributes)
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 public void setPasswordMap(String name, Password password)
Deprecated.UsesetIdentityMap(Map)instead.Set the realm identity map to contain a single entry.- Parameters:
name- the entry namepassword- the password
-
getRealmIdentity
public RealmIdentity getRealmIdentity(Principal principal)
- Specified by:
getRealmIdentityin interfaceSecurityRealm
-
getCredentialAcquireSupport
public SupportLevel getCredentialAcquireSupport(Class<? extends Credential> credentialType, String algorithmName, AlgorithmParameterSpec parameterSpec) throws RealmUnavailableException
- Specified by:
getCredentialAcquireSupportin interfaceSecurityRealm- Throws:
RealmUnavailableException
-
getEvidenceVerifySupport
public SupportLevel getEvidenceVerifySupport(Class<? extends Evidence> evidenceType, String algorithmName) throws RealmUnavailableException
- Specified by:
getEvidenceVerifySupportin interfaceSecurityRealm- Throws:
RealmUnavailableException
-
-