Home | History | Annotate | Download | only in callback

Lines Matching defs:prompt

43     private String prompt;
56 * Construct a {@code PasswordCallback} with a prompt
62 * @param prompt the prompt used to request the password. <p>
67 * @exception IllegalArgumentException if {@code prompt} is null or
68 * if {@code prompt} has a length of 0.
70 public PasswordCallback(String prompt, boolean echoOn) {
71 if (prompt == null || prompt.length() == 0)
74 this.prompt = prompt;
79 * Get the prompt.
83 * @return the prompt.
86 return prompt;