Methods Summary |
---|
public void | clearPassword()Clear the password.
if (password != null) {
Arrays.fill(password, ' ");
}
|
public char[] | getPassword()Get the password.
Note that this method returns a reference to the password.
If a clone of the array is created it is the caller's
responsibility to zero out the password information after
it is no longer needed.
return password;
|
public boolean | getResult()Get the authentication result.
return result;
|
public javax.security.auth.Subject | getSubject()Get the subject.
return subject;
|
public java.lang.String | getUsername()Get the username.
return username;
|
public void | setResult(boolean result)Set the authentication result.
this.result = result;
|