Home | History | Annotate | Download | only in callback

Lines Matching refs:prompt

33     private String prompt;
39 private void setPrompt(String prompt) throws IllegalArgumentException {
40 if (prompt == null || prompt.length() == 0) {
43 this.prompt = prompt;
49 * @param prompt
54 public PasswordCallback(String prompt, boolean echoOn) {
56 setPrompt(prompt);
61 * Returns the prompt that was specified when creating this {@code
64 * @return the prompt
67 return prompt;