Class LdapSecurityRealm.LdapRealmIdentity
- java.lang.Object
-
- org.wildfly.security.auth.realm.ldap.LdapSecurityRealm.LdapRealmIdentity
-
- All Implemented Interfaces:
ModifiableRealmIdentity,RealmIdentity
- Enclosing class:
- LdapSecurityRealm
private class LdapSecurityRealm.LdapRealmIdentity extends Object implements ModifiableRealmIdentity
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private classLdapSecurityRealm.LdapRealmIdentity.LdapIdentity
-
Field Summary
Fields Modifier and Type Field Description private CharsethashCharsetprivate EncodinghashEncodingprivate IdentitySharedExclusiveLock.IdentityLocklockprivate Stringname-
Fields inherited from interface org.wildfly.security.auth.server.ModifiableRealmIdentity
NON_EXISTENT
-
Fields inherited from interface org.wildfly.security.auth.server.RealmIdentity
ANONYMOUS
-
-
Constructor Summary
Constructors Constructor Description LdapRealmIdentity(String name, IdentitySharedExclusiveLock.IdentityLock lock, Charset hashCharset, Encoding hashEncoding)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcreate()Create this realm identity.private LdapSecurityRealm.LdapSearchcreateLdapSearchByDn()voiddelete()Delete this realm identity.voiddispose()Dispose this realm identity after a completed authentication attempt.booleanexists()Determine if the identity exists in lieu of verifying or acquiring a credential.private Map<String,Collection<String>>extractAttributes(Predicate<AttributeMapping> filter, Function<AttributeMapping,Collection<String>> valueFunction)private Map<String,Collection<String>>extractFilteredAttributes(SearchResult identityEntry, DirContext context, DirContext identityContext)private voidextractFilteredAttributesFromSearch(LdapSecurityRealm.LdapSearch search, SearchResult referencedEntry, AttributeMapping mapping, DirContext context, DirContext identityContext, Collection<String> identityAttributeValues, Collection<SearchResult> toSearchInNextLevel)private StringextractRdn(AttributeMapping mapping, String dn)private Map<String,Collection<String>>extractSimpleAttributes(SearchResult identityEntry)private voidforEachAttributeValue(SearchResult entry, String attrId, Consumer<String> action)AttributesgetAttributes()Get the attributes for the realm identity.AuthorizationIdentitygetAuthorizationIdentity()Get an authorization identity for this pre-authenticated identity.<C extends Credential>
CgetCredential(Class<C> credentialType)Acquire a credential of the given type.<C extends Credential>
CgetCredential(Class<C> credentialType, String algorithmName)Acquire a credential of the given type and algorithm name.<C extends Credential>
CgetCredential(Class<C> credentialType, String algorithmName, AlgorithmParameterSpec parameterSpec)Acquire a credential of the given type and algorithm name.SupportLevelgetCredentialAcquireSupport(Class<? extends Credential> credentialType, String algorithmName, AlgorithmParameterSpec parameterSpec)Determine whether a given credential type is definitely obtainable, possibly obtainable, or definitely not obtainable for this identity.SupportLevelgetEvidenceVerifySupport(Class<? extends Evidence> evidenceType, String algorithmName)Determine whether a given type of evidence is definitely verifiable, possibly verifiable, or definitely not verifiable.CharsetgetHashCharset()private LdapSecurityRealm.LdapRealmIdentity.LdapIdentitygetIdentity(DirContext dirContext)private LdapSecurityRealm.LdapRealmIdentity.LdapIdentitygetIdentity(DirContext dirContext, Collection<String> returningAttributes, Collection<String> binaryAttributes)PrincipalgetRealmIdentityPrincipal()Get the principal that canonically identifies the identity within the realm.voidsetAttributes(Attributes attributes)Modify the attributes collection of this identity.voidsetCredentials(Collection<? extends Credential> credentials)Set the credentials of this identity.private booleanvaluesFromAttribute(SearchResult entry, AttributeMapping mapping, Collection<String> outputCollection)Obtains attribute value by mapping from given entry and put it into given collection.booleanverifyEvidence(Evidence evidence)Verify the given evidence against a credential of this identity.-
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.ModifiableRealmIdentity
updateCredential
-
Methods inherited from interface org.wildfly.security.auth.server.RealmIdentity
applyToCredential, applyToCredential, applyToCredential, getCredentialAcquireSupport
-
-
-
-
Field Detail
-
name
private final String name
-
lock
private IdentitySharedExclusiveLock.IdentityLock lock
-
hashCharset
private final Charset hashCharset
-
hashEncoding
private final Encoding hashEncoding
-
-
Constructor Detail
-
LdapRealmIdentity
LdapRealmIdentity(String name, IdentitySharedExclusiveLock.IdentityLock lock, Charset hashCharset, Encoding hashEncoding)
-
-
Method Detail
-
getRealmIdentityPrincipal
public Principal getRealmIdentityPrincipal()
Description copied from interface:RealmIdentityGet the principal that canonically identifies the identity within the realm. This method may return the principal object which was passed in as a parameter toSecurityRealm.getRealmIdentity(Principal)(a.k.a. domain principal), but is not required to do so. Any existent realm identity (i.e. any identity which returnstrueon invocation ofRealmIdentity.exists()) must return a non-nullprincipal.- Specified by:
getRealmIdentityPrincipalin interfaceRealmIdentity- Returns:
- the principal for this realm identity (may not be
null)
-
getHashCharset
public Charset getHashCharset()
-
getCredentialAcquireSupport
public SupportLevel getCredentialAcquireSupport(Class<? extends Credential> credentialType, String algorithmName, AlgorithmParameterSpec parameterSpec) throws RealmUnavailableException
Description copied from interface:RealmIdentityDetermine whether a given credential type is definitely obtainable, possibly obtainable, or definitely not obtainable for this identity.- Specified by:
getCredentialAcquireSupportin interfaceRealmIdentity- 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 type (may not be
null) - Throws:
RealmUnavailableException- if the realm is not able to handle requests for any reason
-
getCredential
public <C extends Credential> C getCredential(Class<C> credentialType) throws RealmUnavailableException
Description copied from interface:RealmIdentityAcquire a credential of the given type.- Specified by:
getCredentialin interfaceRealmIdentity- Type Parameters:
C- the credential type- Parameters:
credentialType- the credential type class (must not benull)- Returns:
- the credential, or
nullif no such credential exists - Throws:
RealmUnavailableException- if the realm is not able to handle requests for any reason
-
getCredential
public <C extends Credential> C getCredential(Class<C> credentialType, String algorithmName) throws RealmUnavailableException
Description copied from interface:RealmIdentityAcquire a credential of the given type and algorithm name. Realms which support more than one credential of a given type must override this method.- Specified by:
getCredentialin interfaceRealmIdentity- Type Parameters:
C- the credential type- Parameters:
credentialType- the credential type class (must not benull)algorithmName- the algorithm name, ornullif any algorithm is acceptable or the credential type does not support algorithm names- Returns:
- the credential, or
nullif no such credential exists - Throws:
RealmUnavailableException- if the realm is not able to handle requests for any reason
-
getCredential
public <C extends Credential> C getCredential(Class<C> credentialType, String algorithmName, AlgorithmParameterSpec parameterSpec) throws RealmUnavailableException
Description copied from interface:RealmIdentityAcquire a credential of the given type and algorithm name. Realms which support more than one credential of a given type and algorithm must override this method.- Specified by:
getCredentialin interfaceRealmIdentity- Type Parameters:
C- the credential type- Parameters:
credentialType- the credential type class (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 credential, or
nullif no such credential exists - Throws:
RealmUnavailableException- if the realm is not able to handle requests for any reason
-
setCredentials
public void setCredentials(Collection<? extends Credential> credentials) throws RealmUnavailableException
Description copied from interface:ModifiableRealmIdentitySet the credentials of this identity. If the identity does not exist, an exception is thrown. Any existing credential(s) are replaced/updated with the new value (in a possibly realm-specific manner).- Specified by:
setCredentialsin interfaceModifiableRealmIdentity- Parameters:
credentials- the new credentials to set- Throws:
RealmUnavailableException- if updating the credentials fails for some reason
-
dispose
public void dispose()
Description copied from interface:RealmIdentityDispose this realm identity after a completed authentication attempt.- Specified by:
disposein interfaceRealmIdentity
-
getAuthorizationIdentity
public AuthorizationIdentity getAuthorizationIdentity() throws RealmUnavailableException
Description copied from interface:RealmIdentityGet an authorization identity for this pre-authenticated identity.- Specified by:
getAuthorizationIdentityin interfaceRealmIdentity- Returns:
- the authorization identity (may not be
null) - Throws:
RealmUnavailableException- if the realm is not able to handle requests for any reason
-
getAttributes
public Attributes getAttributes() throws RealmUnavailableException
Description copied from interface:RealmIdentityGet the attributes for the realm identity.- Specified by:
getAttributesin interfaceRealmIdentity- Returns:
- the attributes, or
nullif the implementing class does not support getting attributes - Throws:
RealmUnavailableException- if accessing the attributes fails for some reason
-
getEvidenceVerifySupport
public SupportLevel getEvidenceVerifySupport(Class<? extends Evidence> evidenceType, String algorithmName) throws RealmUnavailableException
Description copied from interface:RealmIdentityDetermine whether a given type of evidence is definitely verifiable, possibly verifiable, or definitely not verifiable.- Specified by:
getEvidenceVerifySupportin interfaceRealmIdentity- 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
-
verifyEvidence
public boolean verifyEvidence(Evidence evidence) throws RealmUnavailableException
Description copied from interface:RealmIdentityVerify the given evidence against a credential of this identity. The credential to be used is selected based on the evidence type.- Specified by:
verifyEvidencein interfaceRealmIdentity- Parameters:
evidence- the evidence to verify- Returns:
trueif verification was successful,falseotherwise- Throws:
RealmUnavailableException- if the realm is not able to handle requests for any reason
-
exists
public boolean exists() throws RealmUnavailableExceptionDescription copied from interface:RealmIdentityDetermine if the identity exists in lieu of verifying or acquiring a credential. This method is intended to be used to verify an identity for non-authentication purposes only. Implementations of this method should returnfalseup until the point it is known that a call toRealmIdentity.getAuthorizationIdentity()can successfully return an identity. If a realm can load an identity independently of credential acquisition and evidence verification if not already loaded it should be loaded at the time of this call to return an accurate result.- Specified by:
existsin interfaceRealmIdentity- Returns:
trueif the identity exists in this realm,falseotherwise- Throws:
RealmUnavailableException- if the realm is not able to handle requests for any reason
-
createLdapSearchByDn
private LdapSecurityRealm.LdapSearch createLdapSearchByDn()
-
getIdentity
private LdapSecurityRealm.LdapRealmIdentity.LdapIdentity getIdentity(DirContext dirContext) throws RealmUnavailableException
- Throws:
RealmUnavailableException
-
getIdentity
private LdapSecurityRealm.LdapRealmIdentity.LdapIdentity getIdentity(DirContext dirContext, Collection<String> returningAttributes, Collection<String> binaryAttributes) throws RealmUnavailableException
- Throws:
RealmUnavailableException
-
extractRdn
private String extractRdn(AttributeMapping mapping, String dn)
-
valuesFromAttribute
private boolean valuesFromAttribute(SearchResult entry, AttributeMapping mapping, Collection<String> outputCollection) throws NamingException
Obtains attribute value by mapping from given entry and put it into given collection.- Parameters:
entry- LDAP entry, from which should be values obtainedmapping- attribute mapping defining attribute, whose values should be obtainedoutputCollection- output collection for obtained values- Returns:
trueifoutputCollectionwas changed.- Throws:
NamingException
-
extractFilteredAttributes
private Map<String,Collection<String>> extractFilteredAttributes(SearchResult identityEntry, DirContext context, DirContext identityContext)
-
extractFilteredAttributesFromSearch
private void extractFilteredAttributesFromSearch(LdapSecurityRealm.LdapSearch search, SearchResult referencedEntry, AttributeMapping mapping, DirContext context, DirContext identityContext, Collection<String> identityAttributeValues, Collection<SearchResult> toSearchInNextLevel)
-
extractSimpleAttributes
private Map<String,Collection<String>> extractSimpleAttributes(SearchResult identityEntry)
-
extractAttributes
private Map<String,Collection<String>> extractAttributes(Predicate<AttributeMapping> filter, Function<AttributeMapping,Collection<String>> valueFunction)
-
forEachAttributeValue
private void forEachAttributeValue(SearchResult entry, String attrId, Consumer<String> action)
-
delete
public void delete() throws RealmUnavailableExceptionDescription copied from interface:ModifiableRealmIdentityDelete this realm identity. After this call,RealmIdentity.exists()will returnfalse. If the identity does not exist, an exception is thrown.- Specified by:
deletein interfaceModifiableRealmIdentity- Throws:
RealmUnavailableException- if deletion fails for some reason
-
create
public void create() throws RealmUnavailableExceptionDescription copied from interface:ModifiableRealmIdentityCreate this realm identity. After this call,RealmIdentity.exists()will returntrueand the credentials and role sets will be empty. If the identity already exists, an exception is thrown.- Specified by:
createin interfaceModifiableRealmIdentity- Throws:
RealmUnavailableException- if creation fails for some reason
-
setAttributes
public void setAttributes(Attributes attributes) throws RealmUnavailableException
Description copied from interface:ModifiableRealmIdentityModify the attributes collection of this identity. If the identity does not exist, an exception is thrown.- Specified by:
setAttributesin interfaceModifiableRealmIdentity- Parameters:
attributes- the new attributes collection- Throws:
RealmUnavailableException- if updating the attributes collection fails for some reason
-
-