Uses of Interface javax.security.auth.callback.Callback

Uses in package javax.security.sasl

Classes implementing javax.security.auth.callback.Callback

class
This callback is used by SaslServer to determine whether one entity (identified by an authenticated authentication ID) can act on behalf of another entity (identified by an authorization ID).
class
This callback is used by SaslClient and SaslServer to retrieve realm information.
class
This callback is used by SaslClient and SaslServer to obtain a realm given a list of realm choices.

Uses in package javax.security.auth.callback

Classes implementing javax.security.auth.callback.Callback

class
Underlying security services instantiate and pass a ChoiceCallback to the handle() method of a CallbackHandler to display a list of choices and to retrieve the selected choice(s).
class
Underlying security services instantiate and pass a ConfirmationCallback to the handle() method of a CallbackHandler to ask for YES/NO, OK/CANCEL, YES/NO/CANCEL or other similar confirmations.
class
Underlying security services instantiate and pass a LanguageCallback to the handle() method of a CallbackHandler to retrieve the Locale used for localizing text.
class
Underlying security services instantiate and pass a NameCallback to the handle() method of a CallbackHandler to retrieve name information.
class
Underlying security services instantiate and pass a PasswordCallback to the handle() method of a CallbackHandler to retrieve password information.
class
Underlying security services instantiate and pass a TextInputCallback to the handle() method of a CallbackHandler to retrieve generic text information.
class
Underlying security services instantiate and pass a TextOutputCallback to the handle() method of a CallbackHandler to display information messages, warning messages and error messages.

Constructors with parameter type javax.security.auth.callback.Callback

Constructs an UnsupportedCallbackException with no detail message.
Constructs an UnsupportedCallbackException with the specified detail message.

Methods with parameter type javax.security.auth.callback.Callback

void
Retrieve or display the information requested in the provided Callbacks.

The handle() method implementation checks the instance(s) of the Callback object(s) passed in to retrieve or display the requested information.

Methods with return type javax.security.auth.callback.Callback

Callback
Get the unrecognized Callback.