java.security
public static class: KeyStore.CallbackHandlerProtection [javadoc |
source]
java.lang.Object
java.security.KeyStore$CallbackHandlerProtection
All Implemented Interfaces:
ProtectionParameter
A ProtectionParameter encapsulating a CallbackHandler.
Constructor: |
public CallbackHandlerProtection(CallbackHandler handler) {
if (handler == null) {
throw new NullPointerException("handler must not be null");
}
this.handler = handler;
}
Constructs a new CallbackHandlerProtection from a
CallbackHandler. Parameters:
handler - the CallbackHandler
Throws:
NullPointerException - if handler is null
- exception:
NullPointerException - if handler is null
|
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |