java.lang.Object | +--javax.security.auth.callback.TextInputCallback
Underlying security services instantiate and pass a
TextInputCallback
to the invokeCallback
method of a CallbackHandler
to retrieve generic text
information.
CallbackHandler
TextInputCallback(java.lang.String prompt,
java.lang.String defaultText)
TextInputCallback
with a prompt
and default input value.
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
public TextInputCallback(java.lang.String prompt)
TextInputCallback
with a prompt.
prompt
- the prompt used to request the information.java.lang.IllegalArgumentException
- if prompt
is null
or if prompt
has a length of 0.public TextInputCallback(java.lang.String prompt, java.lang.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.java.lang.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 java.lang.String getPrompt()
public java.lang.String getDefaultText()
TextInputCallback
was not instantiated with defaultText
.public void setText(java.lang.String text)
text
- the retrieved text, which may be null.public java.lang.String getText()