Methods Summary |
---|
public java.lang.String | getAuthMethod()This method returns the "method" used to perform authentication
return authMethod;
|
public byte[] | getAuthSpecificData()This method returns a byte array of zero length, since there's
no auth specific data needed for passphrase based authentication.
return new byte[0];
|
public byte[] | getContinuationData()This method returns a byte array of zero length, since there's
no continuation data needed for passphrase based authentication.
return new byte[0];
|
public java.lang.String | getPrincipalName()This method returns the string representation of the principal
that was authenticated.
return principalName;
|
public java.lang.String | getRealmName()This method returns the name of realm where the authentication was
performed.
return realmName;
|
public int | getStatus()This method returns the status of the authentication
return status;
|