|
||||||||||
| 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 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 |
|---|
public AbstractAuthenticationManager()
| Method Detail |
|---|
public final Authentication authenticate(Authentication authentication)
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 AuthenticationManagerauthentication - 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(org.acegisecurity.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 | |||||||||