Interface AuthenticationManager
-
- All Known Implementing Classes:
ProviderManager
public interface AuthenticationManager
Processes anAuthentication
request.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Authentication
authenticate(Authentication authentication)
Attempts to authenticate the passedAuthentication
object, returning a fully populatedAuthentication
object (including granted authorities) if successful.
-
-
-
Method Detail
-
authenticate
Authentication authenticate(Authentication authentication) throws AuthenticationException
Attempts to authenticate the passedAuthentication
object, returning a fully populatedAuthentication
object (including granted authorities) if successful.An
AuthenticationManager
must honour the following contract concerning exceptions:- A
DisabledException
must be thrown if an account is disabled and theAuthenticationManager
can test for this state. - A
LockedException
must be thrown if an account is locked and theAuthenticationManager
can test for account locking. - A
BadCredentialsException
must be thrown if incorrect credentials are presented. Whilst the above exceptions are optional, anAuthenticationManager
must always test credentials.
- Parameters:
authentication
- the authentication request object- Returns:
- a fully authenticated object including credentials
- Throws:
AuthenticationException
- if authentication fails
- A
-
-