com.ibm.commerce.security.commands
Interface SendPasswordNotificationCmd

All Superinterfaces:
TaskCommand
All Known Implementing Classes:
SendPasswordNotificationCmdImpl

public interface SendPasswordNotificationCmd
extends TaskCommand

This task command is used to send a notification informing the user of their new password.

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

    setLogonId
    setPassword

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 setLogonId(java.lang.String strLogonId)
          Sets the logonId of the user, to which the password notification message should be sent.
 void setPassword(java.lang.String strPassword)
          Sets the new password of the user.
 

Field Detail
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

setLogonId

public void setLogonId(java.lang.String strLogonId)
Sets the logonId of the user, to which the password notification message should be sent.
Parameters:
strLogonId - logonId of user to receive notification.

setPassword

public void setPassword(java.lang.String strPassword)
Sets the new password of the user. This password will be sent in the notification message.
Parameters:
strPassword - The password to be sent to the user.