| java.lang.Object org.acegisecurity.providers.jaas.JaasPasswordCallbackHandler
JaasPasswordCallbackHandler | public class JaasPasswordCallbackHandler implements JaasAuthenticationCallbackHandler(Code) | | The most basic Callbacks to be handled when using a LoginContext from JAAS, are the NameCallback and
PasswordCallback. The acegi security framework provides the JaasPasswordCallbackHandler specifically tailored to
handling the PasswordCallback.
author: Ray Krueger version: $Id: JaasPasswordCallbackHandler.java 1784 2007-02-24 21:00:24Z luke_t $ See Also: Callback See Also:
* PasswordCallback |
Method Summary | |
public void | handle(Callback callback, Authentication auth) If the callback passed to the 'handle' method is an instance of PasswordCallback, the
JaasPasswordCallbackHandler will call, callback.setPassword(authentication.getCredentials().toString()). |
|
|