Package net.shibboleth.idp.authn.impl
Class LDAPCredentialValidator
- java.lang.Object
-
- net.shibboleth.utilities.java.support.component.AbstractInitializableComponent
-
- net.shibboleth.utilities.java.support.component.AbstractIdentifiedInitializableComponent
-
- net.shibboleth.idp.authn.AbstractCredentialValidator
-
- net.shibboleth.idp.authn.AbstractUsernamePasswordCredentialValidator
-
- net.shibboleth.idp.authn.impl.LDAPCredentialValidator
-
- All Implemented Interfaces:
net.shibboleth.idp.authn.CredentialValidator,net.shibboleth.idp.authn.principal.PrincipalSupportingComponent,net.shibboleth.utilities.java.support.component.Component,net.shibboleth.utilities.java.support.component.DestructableComponent,net.shibboleth.utilities.java.support.component.IdentifiableComponent,net.shibboleth.utilities.java.support.component.IdentifiedComponent,net.shibboleth.utilities.java.support.component.InitializableComponent
@ThreadSafe public class LDAPCredentialValidator extends net.shibboleth.idp.authn.AbstractUsernamePasswordCredentialValidatorA password validator that authenticates against LDAP natively.- Since:
- 4.0.0
-
-
Field Summary
Fields Modifier and Type Field Description private AuthenticatorauthenticatorLDAP authenticator.private org.slf4j.LoggerlogClass logger.private String[]returnAttributesAttributes to return from authentication.
-
Constructor Summary
Constructors Constructor Description LDAPCredentialValidator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddoInitialize()protected SubjectdoValidate(org.opensaml.profile.context.ProfileRequestContext profileRequestContext, net.shibboleth.idp.authn.context.AuthenticationContext authenticationContext, net.shibboleth.idp.authn.context.UsernamePasswordContext usernamePasswordContext, net.shibboleth.idp.authn.CredentialValidator.WarningHandler warningHandler, net.shibboleth.idp.authn.CredentialValidator.ErrorHandler errorHandler)AuthenticatorgetAuthenticator()Returns the authenticator.String[]getReturnAttributes()Returns the return attributes.protected SubjectpopulateSubject(net.shibboleth.idp.authn.context.UsernamePasswordContext usernamePasswordContext, AuthenticationResponse ldapResponse)Builds a newSubjectpopulated with the necessary data.voidsetAuthenticator(Authenticator auth)Sets the authenticator.voidsetReturnAttributes(String... attributes)Sets the return attributes.-
Methods inherited from class net.shibboleth.idp.authn.AbstractUsernamePasswordCredentialValidator
applyTransforms, doValidate, populateSubject, removeContextAfterValidation, savePasswordToCredentialSet, setLowercase, setMatchExpression, setRemoveContextAfterValidation, setSavePasswordToCredentialSet, setTransforms, setTrim, setUppercase, setUsernamePasswordContextLookupStrategy
-
Methods inherited from class net.shibboleth.idp.authn.AbstractCredentialValidator
getLogPrefix, getSupportedPrincipals, isAcceptable, populateSubject, setActivationCondition, setId, setSupportedPrincipals, validate
-
Methods inherited from class net.shibboleth.utilities.java.support.component.AbstractIdentifiedInitializableComponent
getId
-
Methods inherited from class net.shibboleth.utilities.java.support.component.AbstractInitializableComponent
destroy, doDestroy, initialize, isDestroyed, isInitialized
-
-
-
-
Field Detail
-
log
@Nonnull private final org.slf4j.Logger log
Class logger.
-
authenticator
@Nonnull private Authenticator authenticator
LDAP authenticator.
-
returnAttributes
@Nullable private String[] returnAttributes
Attributes to return from authentication.
-
-
Method Detail
-
getAuthenticator
@NonnullAfterInit public Authenticator getAuthenticator()
Returns the authenticator.- Returns:
- authenticator
-
setAuthenticator
public void setAuthenticator(@Nonnull Authenticator auth)Sets the authenticator.- Parameters:
auth- to authenticate with
-
getReturnAttributes
@Nullable public String[] getReturnAttributes()
Returns the return attributes.- Returns:
- attribute names
-
setReturnAttributes
public void setReturnAttributes(@Nullable String... attributes)Sets the return attributes.- Parameters:
attributes- attribute names
-
doInitialize
protected void doInitialize() throws net.shibboleth.utilities.java.support.component.ComponentInitializationException- Overrides:
doInitializein classnet.shibboleth.utilities.java.support.component.AbstractIdentifiedInitializableComponent- Throws:
net.shibboleth.utilities.java.support.component.ComponentInitializationException
-
doValidate
@Nullable protected Subject doValidate(@Nonnull org.opensaml.profile.context.ProfileRequestContext profileRequestContext, @Nonnull net.shibboleth.idp.authn.context.AuthenticationContext authenticationContext, @Nonnull net.shibboleth.idp.authn.context.UsernamePasswordContext usernamePasswordContext, @Nullable net.shibboleth.idp.authn.CredentialValidator.WarningHandler warningHandler, @Nullable net.shibboleth.idp.authn.CredentialValidator.ErrorHandler errorHandler) throws Exception
- Specified by:
doValidatein classnet.shibboleth.idp.authn.AbstractUsernamePasswordCredentialValidator- Throws:
Exception
-
populateSubject
@Nonnull protected Subject populateSubject(@Nonnull net.shibboleth.idp.authn.context.UsernamePasswordContext usernamePasswordContext, @Nonnull AuthenticationResponse ldapResponse)
Builds a newSubjectpopulated with the necessary data.- Parameters:
usernamePasswordContext- input contextldapResponse- LDAP response data- Returns:
- the subject to return
-
-