|
|||||||||
| Home >> All >> org >> [ acegisecurity overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
org.acegisecurity
Class AbstractAuthenticationManager

java.lang.Objectorg.acegisecurity.AbstractAuthenticationManager
- All Implemented Interfaces:
- AuthenticationManager
- public abstract class AbstractAuthenticationManager
- extends java.lang.Object
- implements AuthenticationManager
- extends java.lang.Object
An abstract implementation of the AuthenticationManager.
- Version:
- $Id: AbstractAuthenticationManager.java,v 1.2 2005/11/17 00:55:49 benalex Exp $
| Constructor Summary | |
AbstractAuthenticationManager()
|
|
| Method Summary | |
Authentication |
authenticate(Authentication authentication)
An implementation of the authenticate method that calls the
abstract method doAuthenticatation to do its work. |
protected abstract Authentication |
doAuthentication(Authentication authentication)
Concrete implementations of this class override this method to provide the authentication service. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
AbstractAuthenticationManager
public AbstractAuthenticationManager()
| Method Detail |
authenticate
public final Authentication authenticate(Authentication authentication) throws AuthenticationException
An implementation of the
authenticatemethod that calls the abstract methoddoAuthenticatationto do its work.If doAuthenticate throws an
AuthenticationExceptionthen the exception is populated with the failedAuthenticationobject that failed.- Specified by:
authenticatein interfaceAuthenticationManager
doAuthentication
protected abstract Authentication doAuthentication(Authentication authentication) throws AuthenticationException
Concrete implementations of this class override this method to provide the authentication service.
The contract for this method is documented in the
AuthenticationManager.authenticate(org.acegisecurity.Authentication)55 .
|
|||||||||
| Home >> All >> org >> [ acegisecurity overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC
org.acegisecurity.AbstractAuthenticationManager