com.ibm.commerce.security.commands
Interface ResetPasswordAdministratorCmd

All Superinterfaces:
AccCommand, ControllerCommand, ECCommand, Protectable
All Known Implementing Classes:
ResetPasswordAdministratorCmdImpl

public interface ResetPasswordAdministratorCmd
extends ControllerCommand

This task command is used by an administrator to reset the password of a shopper.

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

  setLogonId
  setAdministratorPassword
  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 setAdministratorPassword(java.lang.String strAdminPassword)
Sets the administrator's password, who will be resetting the password of the shopper.
void setLogonId(java.lang.String strLogonId)
Sets the logon ID of the shopper whose password will be reset.
void setRedirectURL(java.lang.String strRedirectURL)
Sets the URL to which the user should be redirected after, successful password reset.
Methods inherited from interface com.ibm.commerce.command.ControllerCommand
checkPermission, execute, getGeneric, getRequestProperties, getResolvedRequestProperties, getResponseProperties, getRetriable, getViewInputProperties, isGeneric, isRetriable, mergeProperties, setGeneric, setRequestProperties, setRetriable, setViewInputProperties
Methods inherited from interface com.ibm.commerce.command.AccCommand
accessControlCheck, getAccCheck, getForUserId, getResourceOwners, setAccCheck, setForUserId, setOwner
Methods inherited from interface com.ibm.commerce.command.ECCommand
checkIsAllowed, checkResourcePermission, createCommandExecutionEvent, getCommandContext, getCommandIfName, getCommandName, getCommandStoreId, getDefaultProperties, getResources, getStoreId, getUser, getUserId, performExecute, setCommandContext, setCommandIfName, setCommandStoreId, setDefaultProperties, validateParameters
Methods inherited from interface com.ibm.commerce.security.Protectable
fulfills, getOwner
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

setAdministratorPassword

public void setAdministratorPassword(java.lang.String strAdminPassword)
Sets the administrator's password, who will be resetting the password of the shopper.
Parameters:
strAdminPassword - The administrator password.

setLogonId

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

setRedirectURL

public void setRedirectURL(java.lang.String strRedirectURL)
Sets the URL to which the user should be redirected after, successful password reset.
Parameters:
strRedirectURL - URL to redirect to.

Feedback