com.ibm.commerce.requisitionlist.commands
Interface RequisitionListUpdateCmd

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

public interface RequisitionListUpdateCmd
extends ControllerCommand

Update information for a requisition list.

Input parameters:

Name Type Requirement Description
requisitionListId Long mandatory The id of the requisition list to be updated.
name String optional The name of the requisition list
status Char optional The status of the requisition list. The valid values are 'Y' and 'Z'.
billtoAddressId Long optional The billing address id for the requisition list.
... String optional Some optional payment Name value pairs.

Output parameters: None.

Behavior:

View:


Field Summary
static java.lang.String COPYRIGHT
IBM copyright notice field.
static java.lang.String defaultCommandClassName
The default implementation class.
static java.lang.String NAME
The name of the Command Interface class.
Method Summary
void setBilltoAddressId(java.lang.Long id)
Updates the billing address of the requisition list to the new address id.
void setName(java.lang.String name)
Updates the name of the requisition list to the new name.
void setRequisitionListId(java.lang.Long id)
Specifies the requisition list id to be updated.
void setStatus(java.lang.String status)
Updates the status of the requisition list to the new status.
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
IBM copyright notice field.
See Also:
Constant Field Values

NAME

public static final java.lang.String NAME
The name of the Command Interface class.
See Also:
Constant Field Values

defaultCommandClassName

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

setBilltoAddressId

public void setBilltoAddressId(java.lang.Long id)
Updates the billing address of the requisition list to the new address id.
Parameters:
id - address id

setName

public void setName(java.lang.String name)
Updates the name of the requisition list to the new name.
Parameters:
name - requisition list name

setRequisitionListId

public void setRequisitionListId(java.lang.Long id)
Specifies the requisition list id to be updated.
Parameters:
id - requisition list id

setStatus

public void setStatus(java.lang.String status)
Updates the status of the requisition list to the new status.
Parameters:
status - status

Feedback