Home | History | Annotate | Download | only in callback

Lines Matching refs:password

24  * Used in conjunction with a {@link CallbackHandler} to retrieve a password
79 * Sets the password. The {@link CallbackHandler} that performs the actual
80 * provisioning or input of the password needs to call this method to hand
81 * back the password to the security service that requested it.
83 * @param password
84 * the password. A copy of this is stored, so subsequent changes
87 public void setPassword(char[] password) {
88 if (password == null) {
89 this.inputPassword = password;
91 inputPassword = new char[password.length];
92 System.arraycopy(password, 0, inputPassword, 0, inputPassword.length);
97 * Returns the password. The security service that needs the password
101 * @return the password. A copy of the internal password is created and
102 * returned, so subsequent changes to the internal password do not
115 * Clears the password stored in this {@code PasswordCallback}.