com.ibm.commerce.security.commands
Interface ResetPasswordGuestCmd

All Superinterfaces:
TaskCommand
All Known Implementing Classes:
ResetPasswordGuestCmdImpl

public interface ResetPasswordGuestCmd
extends TaskCommand

This task command is used to reset the password of a guest user.

Before executing this task command, the methods listed below must be invoked.

  setLogonId
  setChallengeAnswer
  setRedirectURL
 

Field Summary
static java.lang.String COPYRIGHT
Copyright field.
static java.lang.String defaultCommandClassName
Default command implementation class.
static java.lang.String NAME
Command name.
Method Summary
void setChallengeAnswer(java.lang.String strChallengeAnswer)
Sets the answer to the challenge question; used to confirm identity.
void setLogonId(java.lang.String strLogonId)
Sets the logon ID of the shopper or administrator whose password needs to be reset.
Field Detail

COPYRIGHT

public static final java.lang.String COPYRIGHT
Copyright field.
See Also:
Constant Field Values

NAME

public static final java.lang.String NAME
Command name.
See Also:
Constant Field Values

defaultCommandClassName

public static final java.lang.String defaultCommandClassName
Default command implementation class.
See Also:
Constant Field Values
Method Detail

setChallengeAnswer

public void setChallengeAnswer(java.lang.String strChallengeAnswer)
Sets the answer to the challenge question; used to confirm identity.
Parameters:
strChallengeAnswer - The answer to the challenge question.

setLogonId

public void setLogonId(java.lang.String strLogonId)
Sets the logon ID of the shopper or administrator whose password needs to be reset.

Feedback