Class PasswordValidationCallback.DigestPasswordRequest

java.lang.Object
com.sun.xml.wss.impl.callback.PasswordValidationCallback.DigestPasswordRequest
All Implemented Interfaces:
PasswordValidationCallback.Request
Enclosing class:
PasswordValidationCallback

public static class PasswordValidationCallback.DigestPasswordRequest extends Object implements PasswordValidationCallback.Request
Represents a validation request when the password in the username token is in digested form.
  • Constructor Details

    • DigestPasswordRequest

      public DigestPasswordRequest(String userName, String digest, String nonce, String created)
      Constructor.
      Parameters:
      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.
  • Method Details

    • setPassword

      public void setPassword(String password)
      This method must be invoked by the CallbackHandler while handling Callback initialized with DigestPasswordRequest.
    • getPassword

      public String getPassword()
    • getUsername

      public String getUsername()
    • getDigest

      public String getDigest()
    • getNonce

      public String getNonce()
    • getCreated

      public String getCreated()