Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

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

Uses of Callback in javax.security.auth.callback
 

Classes in javax.security.auth.callback that implement Callback
 class ChoiceCallback
          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 ConfirmationCallback
          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 LanguageCallback
          Underlying security services instantiate and pass a LanguageCallback to the handle() method of a CallbackHandler to retrieve the java.util.Locale used for localizing text.
 class NameCallback
          Underlying security services instantiate and pass a NameCallback to the handle() method of a CallbackHandler to retrieve name information.
 class PasswordCallback
          Underlying security services instantiate and pass a PasswordCallback to the handle() method of a CallbackHandler to retrieve password information.
 class TextInputCallback
          Underlying security services instantiate and pass a TextInputCallback to the handle() method of a CallbackHandler to retrieve generic text information.
 class TextOutputCallback
          Underlying security services instantiate and pass a TextOutputCallback to the handle() method of a CallbackHandler to display information messages, warning messages and error messages.
 

Fields in javax.security.auth.callback declared as Callback
private  Callback UnsupportedCallbackException.callback
           
 

Methods in javax.security.auth.callback that return Callback
 Callback UnsupportedCallbackException.getCallback()
          Get the unrecognized Callback.
 

Methods in javax.security.auth.callback with parameters of type Callback
 void CallbackHandler.handle(Callback[] callbacks)
          Retrieve or display the information requested in the provided Callbacks.
 

Constructors in javax.security.auth.callback with parameters of type Callback
UnsupportedCallbackException(Callback callback)
          Constructs an UnsupportedCallbackException with no detail message.
UnsupportedCallbackException(Callback callback, java.lang.String msg)
          Constructs an UnsupportedCallbackException with the specified detail message.