|
For the latest news and information visit The GNU Crypto project |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
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.
CallbackHandler
,
Serialized FormConstructor Summary | |
---|---|
TextInputCallback(java.lang.String prompt)
Construct a TextInputCallback with a prompt. |
|
TextInputCallback(java.lang.String prompt,
java.lang.String defaultText)
Construct a TextInputCallback with a prompt and default
input value. |
Method Summary | |
---|---|
java.lang.String |
getDefaultText()
Get the default text. |
java.lang.String |
getPrompt()
Get the prompt. |
java.lang.String |
getText()
Get the retrieved text. |
void |
setText(java.lang.String text)
Set the retrieved text. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public TextInputCallback(java.lang.String prompt) throws java.lang.IllegalArgumentException
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) throws java.lang.IllegalArgumentException
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
.Method Detail |
public java.lang.String getPrompt()
public java.lang.String getDefaultText()
null
if this
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()
null
.
|
For the latest news and information visit The GNU Crypto project |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |