SecretKeyCallbackpublic class SecretKeyCallback extends Object implements CallbackCallback for acquiring a shared secret from a key repository.
This Callback may be used by client or server authentication modules
to obtain shared secrets (for example, passwords) without relying on a
user during the Callback processing.
This Callback is typically empoyed by ClientAuthModules
invoked from intermediate components that need to acquire
a password to authenticate to their target service. |
Fields Summary |
---|
private Request | request | private SecretKey | key |
Constructors Summary |
---|
public SecretKeyCallback(Request request)Constructs this SecretKeyCallback with a secret key Request object.
The request object identifies the secret key
to be returned.
If the alias is null, the handler of the callback
relies on its own default.
this.request = request;
|
|