com.ibm.commerce.me.commands
Interface SubmitShoppingCartCmd

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

public interface SubmitShoppingCartCmd
extends ControllerCommand

This is the interface of SubmitShoppingCard command. The SubmitShopingCart command is invoked when the procurement buyer submits or checks out their order during catalog browsing. This command changes the status of the order and order items to W (awaiting approval) from P (pending). Together with the SendShoppingCart command, the SubmitShoppingCart command can be used to alter the shopping flow to send the order of the procurement buyer to the procurement system.


Field Summary
static java.lang.String COPYRIGHT
IBM copy right field.
static java.lang.String defaultCommandClassName
The name of the default implementation of this command
static java.lang.String NAME
The interface name
Method Summary
void setOrderId(java.lang.Long orderRn)
Sets orderId
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 copy right field.
See Also:
Constant Field Values

NAME

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

defaultCommandClassName

public static final java.lang.String defaultCommandClassName
The name of the default implementation of this command
See Also:
Constant Field Values
Method Detail

setOrderId

public void setOrderId(java.lang.Long orderRn)
Sets orderId
Parameters:
orderRn - The order id.

Feedback