| java.lang.Object org.obe.client.api.base.OBECallbackHandler
OBECallbackHandler | public class OBECallbackHandler implements CallbackHandler(Code) | | The standard JAAS callback handler for OBE. Some application servers use
non-standard callbacks which require a custom callback handler. For example,
WebLogic Server passes a URLCallback to collect the server's URL.
author: Adrian Price |
handle | protected void handle(Callback callback) throws IOException, UnsupportedCallbackException(Code) | | Handles a specific callback. Subclasses can override this method in
order to handle non-standard callback types. This class handles the
standard callback types
javax.security.auth.callback.TextOutputCallback ,
javax.security.auth.callback.NameCallback ,
javax.security.auth.callback.PasswordCallback .
Parameters: callback - The callback to handle. throws: IOException - If an I/O error occurs. throws: UnsupportedCallbackException - If this CallbackHandler does notsupport this Callback type. |
|
|