| java.lang.Object com.sun.jbi.internal.security.callback.ProxyCallbackHandler
ProxyCallbackHandler | public class ProxyCallbackHandler implements CallbackHandler(Code) | | This is a Delegating CallbackHandler, it delegates the task of handling the
callbacks to secondary callback handlers.
author: Sun Microsystems, Inc. |
Method Summary | |
public void | handle(Callback[] callbacks) The implementation on the CallbackInterface.
Parameters: callbacks - - array of Callbacks to be handled. throws: java.io.IOException - - if an input or output error occurs. |
ProxyCallbackHandler | public ProxyCallbackHandler(CallbackHandler keyInfoHandler, CallbackHandler authHandler)(Code) | | Creates a new instance of ProxyCallbackHandler.
Parameters: keyInfoHandler - is the callback handler to which this handler will delegatethe handling of the Callbacks for Key/Certificate information. Parameters: authHandler - is the callback handler to which this handler will delegatethe handling of the Callbacks for validating user information. |
|
|