|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.acegisecurity.AbstractAuthenticationManager
public abstract class AbstractAuthenticationManager
An abstract implementation of the AuthenticationManager.
| Constructor Summary | |
|---|---|
AbstractAuthenticationManager()
|
|
| Method Summary | |
|---|---|
Authentication |
authenticate(Authentication authRequest)
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 |
|---|
public AbstractAuthenticationManager()
| Method Detail |
|---|
public final Authentication authenticate(Authentication authRequest)
throws AuthenticationException
An implementation of the authenticate method that calls the abstract method
doAuthenticatation to do its work.
If doAuthenticate throws an AuthenticationException then the exception is populated
with the failed Authentication object that failed.
authenticate in interface AuthenticationManagerauthRequest - the authentication request object
AuthenticationException - if authentication fails
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(Authentication).
authentication - the authentication request object
AuthenticationException - if authentication fails
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||