OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:RealmChoiceCallback
(Results
1 - 2
of
2
) sorted by null
/external/smack/src/org/apache/harmony/javax/security/sasl/
RealmChoiceCallback.java
22
public class
RealmChoiceCallback
extends ChoiceCallback {
26
public
RealmChoiceCallback
(String prompt, String[] choices, int defaultChoice,
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/
RealmChoiceCallbackTest.java
24
import javax.security.sasl.
RealmChoiceCallback
;
50
* Test for <code>
RealmChoiceCallback
(String prompt, String[] choices,
59
new
RealmChoiceCallback
(null, choices, 0, true);
64
new
RealmChoiceCallback
("", choices, 0, true);
69
new
RealmChoiceCallback
("prompt", null, 0, true);
74
new
RealmChoiceCallback
("prompt", emptyCh, 0, true);
79
new
RealmChoiceCallback
("prompt", wrongCh1, 0, true);
84
new
RealmChoiceCallback
("prompt", wrongCh2, 0, false);
89
new
RealmChoiceCallback
("prompt", choices, -1, true);
94
new
RealmChoiceCallback
("prompt", choices, choices.length, true)
[
all
...]
Completed in 36 milliseconds