public final class

ActiveDirectoryLdapAuthenticationProvider

extends AbstractLdapAuthenticationProvider
java.lang.Object
   ↳ org.springframework.security.ldap.authentication.AbstractLdapAuthenticationProvider
     ↳ org.springframework.security.ldap.authentication.ad.ActiveDirectoryLdapAuthenticationProvider

Class Overview

Specialized LDAP authentication provider which uses Active Directory configuration conventions.

It will authenticate using the Active Directory userPrincipalName (in the form username@domain). If the username does not already end with the domain name, the userPrincipalName will be built by appending the configured domain name to the username supplied in the authentication request. If no domain name is configured, it is assumed that the username will always contain the domain name.

The user authorities are obtained from the data contained in the memberOf attribute.

Active Directory Sub-Error Codes

When an authentication fails, resulting in a standard LDAP 49 error code, Active Directory also supplies its own sub-error codes within the error message. These will be used to provide additional log information on why an authentication has failed. Typical examples are
  • 525 - user not found
  • 52e - invalid credentials
  • 530 - not permitted to logon at this time
  • 532 - password expired
  • 533 - account disabled
  • 701 - account expired
  • 773 - user must reset password
  • 775 - account locked
If you set the convertSubErrorCodesToExceptions property to true, the codes will also be used to control the exception raised.

Summary

[Expand]
Inherited Fields
From class org.springframework.security.ldap.authentication.AbstractLdapAuthenticationProvider
Public Constructors
ActiveDirectoryLdapAuthenticationProvider(String domain, String url)
Public Methods
void setConvertSubErrorCodesToExceptions(boolean convertSubErrorCodesToExceptions)
By default, a failed authentication (LDAP error 49) will result in a BadCredentialsException.
Protected Methods
DirContextOperations doAuthentication(UsernamePasswordAuthenticationToken auth)
Collection<? extends GrantedAuthority> loadUserAuthorities(DirContextOperations userData, String username, String password)
Creates the user authority list from the values of the memberOf attribute obtained from the user's Active Directory entry.
[Expand]
Inherited Methods
From class org.springframework.security.ldap.authentication.AbstractLdapAuthenticationProvider
From class java.lang.Object
From interface org.springframework.context.MessageSourceAware
From interface org.springframework.security.authentication.AuthenticationProvider

Public Constructors

public ActiveDirectoryLdapAuthenticationProvider (String domain, String url)

Parameters
domain the domain name (may be null or empty)
url an LDAP url (or multiple URLs)

Public Methods

public void setConvertSubErrorCodesToExceptions (boolean convertSubErrorCodesToExceptions)

By default, a failed authentication (LDAP error 49) will result in a BadCredentialsException.

If this property is set to true, the exception message from a failed bind attempt will be parsed for the AD-specific error code and a CredentialsExpiredException, DisabledException, AccountExpiredException or LockedException will be thrown for the corresponding codes. All other codes will result in the default BadCredentialsException.

Parameters
convertSubErrorCodesToExceptions true to raise an exception based on the AD error code.

Protected Methods

protected DirContextOperations doAuthentication (UsernamePasswordAuthenticationToken auth)

protected Collection<? extends GrantedAuthority> loadUserAuthorities (DirContextOperations userData, String username, String password)

Creates the user authority list from the values of the memberOf attribute obtained from the user's Active Directory entry.