| java.lang.Object org.apache.catalina.realm.JAASCallbackHandler
JAASCallbackHandler | public class JAASCallbackHandler implements CallbackHandler(Code) | | Implementation of the JAAS CallbackHandler interface,
used to negotiate delivery of the username and credentials that were
specified to our constructor. No interaction with the user is required
(or possible).
author: Craig R. McClanahan version: $Revision: 1.3 $ $Date: 2004/02/29 12:38:47 $ |
Method Summary | |
public void | handle(Callback callbacks) Retrieve the information requested in the provided Callbacks. |
password | protected String password(Code) | | The password to be authenticated with.
|
username | protected String username(Code) | | The username to be authenticated with.
|
JAASCallbackHandler | public JAASCallbackHandler(JAASRealm realm, String username, String password)(Code) | | Construct a callback handler configured with the specified values.
Parameters: realm - Our associated JAASRealm instance Parameters: username - Username to be authenticated with Parameters: password - Password to be authenticated with |
|
|