public static class PasswordValidationCallback.DigestPasswordRequest extends Object implements PasswordValidationCallback.Request
| Constructor and Description |
|---|
DigestPasswordRequest(String userName,
String digest,
String nonce,
String created)
Constructor.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getCreated() |
String |
getDigest() |
String |
getNonce() |
String |
getPassword() |
String |
getUsername() |
void |
setPassword(String password)
This method must be invoked by the CallbackHandler while handling
Callback initialized with DigestPasswordRequest.
|
public DigestPasswordRequest(String userName, String digest, String nonce, String created)
userName - java.lang.String representing Username.digest - java.lang.String Base64 encoded form of Digested Password.nonce - java.lang.String representation of unique Nonce
used for calculating Digested password.created - java.security.String representation of created time
used for password digest calculation.public void setPassword(String password)
public String getPassword()
public String getUsername()
public String getDigest()
public String getNonce()
public String getCreated()
Copyright © 2005–2018 Oracle Corporation. All rights reserved.