com.sun.xml.wss.impl.callback
Class PasswordValidationCallback.DigestPasswordRequest

java.lang.Object
  extended by 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 Summary
PasswordValidationCallback.DigestPasswordRequest(String userName, String digest, String nonce, String created)
          Constructor.
 
Method Summary
 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.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PasswordValidationCallback.DigestPasswordRequest

public PasswordValidationCallback.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 Detail

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()


Copyright © 2005-2015 Oracle Corporation. All Rights Reserved.