Added in API level 1
CallbackHandlerProtection
open class CallbackHandlerProtection : KeyStore.ProtectionParameter
kotlin.Any | |
↳ | java.security.KeyStore.CallbackHandlerProtection |
A ProtectionParameter encapsulating a CallbackHandler.
Summary
Public constructors | |
---|---|
CallbackHandlerProtection(handler: CallbackHandler!) Constructs a new CallbackHandlerProtection from a CallbackHandler. |
Public methods | |
---|---|
open CallbackHandler! |
Returns the CallbackHandler. |
Public constructors
CallbackHandlerProtection
Added in API level 1
CallbackHandlerProtection(handler: CallbackHandler!)
Constructs a new CallbackHandlerProtection from a CallbackHandler.
Parameters | |
---|---|
handler |
CallbackHandler!: the CallbackHandler |
Exceptions | |
---|---|
java.lang.NullPointerException |
if handler is null |
Public methods
getCallbackHandler
Added in API level 1
open fun getCallbackHandler(): CallbackHandler!
Returns the CallbackHandler.
Return | |
---|---|
CallbackHandler! |
the CallbackHandler. |