Uses of Interface
jakarta.security.auth.message.callback.PrivateKeyCallback.Request
Package | Description |
---|---|
jakarta.security.auth.message.callback |
This package defines callback interfaces that may be used by a pluggable authentication mechanisms (aka message authentication modules)
to interact with the container (aka message processing runtime) that invoked the module.
|
-
Uses of PrivateKeyCallback.Request in jakarta.security.auth.message.callback
Classes in jakarta.security.auth.message.callback that implement PrivateKeyCallback.Request Modifier and Type Class Description static class
PrivateKeyCallback.AliasRequest
Request type for private keys that are identified using an alias.static class
PrivateKeyCallback.DigestRequest
Request type for private keys that are identified using a certificate digest or thumbprint.static class
PrivateKeyCallback.IssuerSerialNumRequest
Request type for private keys that are identified using an issuer/serial number.static class
PrivateKeyCallback.SubjectKeyIDRequest
Request type for private keys that are identified using a SubjectKeyIDMethods in jakarta.security.auth.message.callback that return PrivateKeyCallback.Request Modifier and Type Method Description PrivateKeyCallback.Request
PrivateKeyCallback. getRequest()
Used by the CallbackHandler to get the Request object that identifies the private key to be returned.Constructors in jakarta.security.auth.message.callback with parameters of type PrivateKeyCallback.Request Constructor Description PrivateKeyCallback(PrivateKeyCallback.Request request)
Constructs this PrivateKeyCallback with a private key Request object.