com.ibm.commerce.security.commands
Interface UpdateCredentialsCmd

All Superinterfaces:
TaskCommand
All Known Implementing Classes:
UpdateCredentialsCmdImpl

public interface UpdateCredentialsCmd
extends TaskCommand

This command will take the input credentials and update them in either the database, LDAP, or a third party system depending on how the WCS system is configured.

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 markPasswordTemporary()
          Call this method to indicate that the updated password is temporary.
 void setLogonId(java.lang.String strLogonId)
          Sets the logon ID of the user whose password is to be updated.
 void setPassword(java.lang.String strPassword)
          Sets the value of the new password
 

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

markPasswordTemporary

public void markPasswordTemporary()
Call this method to indicate that the updated password is temporary.

setLogonId

public void setLogonId(java.lang.String strLogonId)
Sets the logon ID of the user whose password is to be updated.

setPassword

public void setPassword(java.lang.String strPassword)
Sets the value of the new password
Parameters:
strPassword - The password.