org.springframework.security.authentication
Class ProviderManager

java.lang.Object
  extended by org.springframework.security.authentication.AbstractAuthenticationManager
      extended by org.springframework.security.authentication.ProviderManager
All Implemented Interfaces:
InitializingBean, MessageSourceAware, AuthenticationManager

public class ProviderManager
extends AbstractAuthenticationManager
implements MessageSourceAware, InitializingBean

Iterates an Authentication request through a list of AuthenticationProviders.

AuthenticationProviders are usually tried in order until one provides a non-null response. A non-null response indicates the provider had authority to decide on the authentication request and no further providers are tried. If a subsequent provider successfully authenticates the request, the earlier authentication exception is disregarded and the successful authentication will be used. If no subsequent provider provides a non-null response, or a new AuthenticationException, the last AuthenticationException received will be used. If no provider returns a non-null response, or indicates it can even process an Authentication, the ProviderManager will throw a ProviderNotFoundException.

The exception to this process is when a provider throws an AccountStatusException, in which case no further providers in the list will be queried.

Event Publishing

Authentication event publishing is delegated to the configured AuthenticationEventPublisher which defaults to a null implementation which doesn't publish events, so if you are configuring the bean yourself you must inject a publisher bean if you want to receive events. The standard implementation is DefaultAuthenticationEventPublisher which maps common exceptions to events (in the case of authentication failure) and publishes an AuthenticationSuccessEvent if authentication succeeds. If you are using the namespace then an instance of this bean will be used automatically by the <http> configuration, so you will receive events from the web part of your application automatically.

Note that the implementation also publishes authentication failure events when it obtains an authentication result (or an exception) from the "parent" AuthenticationManager if one has been set. So in this situation, the parent should not generally be configured to publish events or there will be duplicates.

Version:
$Id: ProviderManager.java 4031 2009-12-07 21:38:40Z ltaylor $
Author:
Ben Alex, Luke Taylor
See Also:
DefaultAuthenticationEventPublisher

Field Summary
protected  MessageSourceAccessor messages
           
 
Constructor Summary
ProviderManager()
           
 
Method Summary
 void afterPropertiesSet()
           
 Authentication doAuthentication(Authentication authentication)
          Attempts to authenticate the passed Authentication object.
 List<AuthenticationProvider> getProviders()
           
 void setAuthenticationEventPublisher(AuthenticationEventPublisher eventPublisher)
           
 void setMessageSource(MessageSource messageSource)
           
 void setParent(AuthenticationManager parent)
           
 void setProviders(List providers)
          Sets the AuthenticationProvider objects to be used for authentication.
 
Methods inherited from class org.springframework.security.authentication.AbstractAuthenticationManager
authenticate, setClearExtraInformation
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

messages

protected MessageSourceAccessor messages
Constructor Detail

ProviderManager

public ProviderManager()
Method Detail

afterPropertiesSet

public void afterPropertiesSet()
                        throws Exception
Specified by:
afterPropertiesSet in interface InitializingBean
Throws:
Exception

doAuthentication

public Authentication doAuthentication(Authentication authentication)
                                throws AuthenticationException
Attempts to authenticate the passed Authentication object.

The list of AuthenticationProviders will be successively tried until an AuthenticationProvider indicates it is capable of authenticating the type of Authentication object passed. Authentication will then be attempted with that AuthenticationProvider.

If more than one AuthenticationProvider supports the passed Authentication object, only the first AuthenticationProvider tried will determine the result. No subsequent AuthenticationProviders will be tried.

Specified by:
doAuthentication in class AbstractAuthenticationManager
Parameters:
authentication - the authentication request object.
Returns:
a fully authenticated object including credentials.
Throws:
AuthenticationException - if authentication fails.

getProviders

public List<AuthenticationProvider> getProviders()

setMessageSource

public void setMessageSource(MessageSource messageSource)
Specified by:
setMessageSource in interface MessageSourceAware

setParent

public void setParent(AuthenticationManager parent)

setAuthenticationEventPublisher

public void setAuthenticationEventPublisher(AuthenticationEventPublisher eventPublisher)

setProviders

public void setProviders(List providers)
Sets the AuthenticationProvider objects to be used for authentication.

Parameters:
providers - the list of authentication providers which will be used to process authentication requests.
Throws:
IllegalArgumentException - if the list is empty or null, or any of the elements in the list is not an AuthenticationProvider instance.


Copyright © 2004-2009 SpringSource, Inc. All Rights Reserved.