java.lang.Object | |
↳ | javax.security.auth.callback.TextInputCallback |
![]() |
Underlying security services instantiate and pass a
TextInputCallback
to the handle
method of a CallbackHandler
to retrieve generic text
information.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Construct a
TextInputCallback with a prompt. | |||||||||||
Construct a
TextInputCallback with a prompt
and default input value. |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Get the default text.
| |||||||||||
Get the prompt.
| |||||||||||
Get the retrieved text.
| |||||||||||
Set the retrieved text.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Construct a 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.
|
---|
Construct a 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.
|
---|
Get the default text.
TextInputCallback
was not instantiated with defaultText
.