Package org.ldaptive.auth.ext
Class EDirectoryAuthenticationResponseHandler
- java.lang.Object
-
- org.ldaptive.auth.ext.EDirectoryAuthenticationResponseHandler
-
- All Implemented Interfaces:
AuthenticationResponseHandler
public class EDirectoryAuthenticationResponseHandler extends Object implements AuthenticationResponseHandler
Attempts to parse the authentication response and set the account state using data associated with eDirectory. TheAuthenticator
should be configured to return 'passwordExpirationTime' and 'loginGraceRemaining' attributes, so they can be consumed by this handler. If this handler is assigned awarningPeriod
, this handler will only emit warnings during that window before password expiration. Otherwise, a warning is always emitted if passwordExpirationTime is set.
-
-
Field Summary
Fields Modifier and Type Field Description static String[]
ATTRIBUTES
Attributes needed to enforce password policy.private Period
warningPeriod
Amount of time before expiration to produce a warning.
-
Constructor Summary
Constructors Constructor Description EDirectoryAuthenticationResponseHandler()
Default constructor.EDirectoryAuthenticationResponseHandler(Period warning)
Creates a new edirectory authentication response handler.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Period
getWarningPeriod()
Returns the amount of time before expiration to produce a warning.void
handle(AuthenticationResponse response)
Handle the response from an ldap authentication.void
setWarningPeriod(Period period)
Sets the amount of time before expiration to produce a warning.String
toString()
-
-
-
Constructor Detail
-
EDirectoryAuthenticationResponseHandler
public EDirectoryAuthenticationResponseHandler()
Default constructor.
-
EDirectoryAuthenticationResponseHandler
public EDirectoryAuthenticationResponseHandler(Period warning)
Creates a new edirectory authentication response handler.- Parameters:
warning
- length of time before expiration that should produce a warning
-
-
Method Detail
-
handle
public void handle(AuthenticationResponse response)
Description copied from interface:AuthenticationResponseHandler
Handle the response from an ldap authentication.- Specified by:
handle
in interfaceAuthenticationResponseHandler
- Parameters:
response
- produced from an authentication
-
getWarningPeriod
public Period getWarningPeriod()
Returns the amount of time before expiration to produce a warning.- Returns:
- warning period
-
setWarningPeriod
public void setWarningPeriod(Period period)
Sets the amount of time before expiration to produce a warning.- Parameters:
period
- warning period
-
-