public class TextInputCallback extends Objectimplements Callback , Serializable
Underlying security services instantiate and pass a TextInputCallback to the handle method of a CallbackHandler to retrieve generic text information.
CallbackHandler,
Serialized Form
| Constructor and Description |
|---|
TextInputCallback(String
Construct a
TextInputCallback with a prompt.
|
TextInputCallback(String
Construct a
TextInputCallback with a prompt and default input value.
|
public TextInputCallback(Stringprompt)
TextInputCallback with a prompt.
prompt - the prompt used to request the information.
IllegalArgumentException - if
prompt is null or if
prompt has a length of 0.
public TextInputCallback(Stringprompt, String defaultText)
TextInputCallback with a prompt and default input value.
prompt - the prompt used to request the information.
defaultText - the text to be used as the default text displayed with the prompt.
IllegalArgumentException - if
prompt is null, if
prompt has a length of 0, if
defaultText is null or if
defaultText has a length of 0.
public StringgetPrompt()
public StringgetDefaultText()
TextInputCallback was not instantiated with
defaultText.
public void setText(Stringtext)
text - the retrieved text, which may be null.
getText()
public StringgetText()
setText(java.lang.String)