com.ibm.commerce.payment.commands
Interface CheckOrderCmd
-
- All Superinterfaces:
- com.ibm.websphere.command.CacheableCommand, com.ibm.commerce.command.CacheableECCommand, com.ibm.websphere.command.Command, com.ibm.websphere.command.CommandCaller, ECCommand, java.io.Serializable, com.ibm.websphere.command.TargetableCommand, TaskCommand
- All Known Implementing Classes:
- CheckOrderCmdImpl
Deprecated.this command is deprecated and will not be called by the new payments component.
public interface CheckOrderCmd extends TaskCommand
TheCheckOrderCmd
Task Command checks if an Order that is in state "I" (OrderConstants.ORDER_SUBMITTED) has already been processed. If it is determined that the order has already been processed, the command is expected to throw the ECApplicationException with the Error Code CheckOrderCmd.ERR_CODE_RESUBMIT_NOT_ALLOWED and the Error View named by CheckOrderCmd.ERRTASK_NAME.
-
-
Field Summary
Fields Modifier and Type Field and Description static java.lang.String
COPYRIGHT
Deprecated.IBM copyright notice field.static java.lang.String
defaultCommandClassName
Deprecated.The default implementation of this command.static java.lang.String
ERR_CODE_RESUBMIT_NOT_ALLOWED
Deprecated.Error code indicating order has already been submitted for processing and re-submission is not allowed at this point.static java.lang.String
ERRTASK_NAME
Deprecated.Name of the Error View for this command.static java.lang.String
NAME
Deprecated.The name of this command.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method and Description void
setOrderId(java.lang.Long orderId)
Deprecated.Sets the orderId property of the command.-
Methods inherited from interface com.ibm.websphere.command.CacheableCommand
executeFromCache, getCaller, getEntryInfo, getId, getSharingPolicy, postExecute, preExecute, setCaller, updateCache
-
Methods inherited from interface com.ibm.websphere.command.TargetableCommand
getCommandTarget, getCommandTargetName, hasOutputProperties, performExecute, setCommandTarget, setCommandTargetName, setOutputProperties
-
Methods inherited from interface com.ibm.commerce.command.ECCommand
checkIsAllowed, checkResourcePermission, createCommandExecutionEvent, getAccCheck, getCommandContext, getCommandIfName, getCommandName, getCommandStoreId, getDefaultProperties, getExceptionInvokeParameters, getPostInvokeParameters, getPreInvokeParameters, getResources, getStoreId, getUser, getUserId, performExecute, setAccCheck, setCommandContext, setCommandIfName, setCommandStoreId, setDefaultProperties, validateParameters
-
-
-
-
Field Detail
-
COPYRIGHT
static final java.lang.String COPYRIGHT
Deprecated.IBM copyright notice field.- See Also:
- Constant Field Values
-
NAME
static final java.lang.String NAME
Deprecated.The name of this command.- See Also:
- Constant Field Values
-
ERRTASK_NAME
static final java.lang.String ERRTASK_NAME
Deprecated.Name of the Error View for this command. The constant value of this field is "CheckOrderErrorView".- See Also:
- Constant Field Values
-
ERR_CODE_RESUBMIT_NOT_ALLOWED
static final java.lang.String ERR_CODE_RESUBMIT_NOT_ALLOWED
Deprecated.Error code indicating order has already been submitted for processing and re-submission is not allowed at this point. The constant value of this field is "1901".- See Also:
- Constant Field Values
-
defaultCommandClassName
static final java.lang.String defaultCommandClassName
Deprecated.The default implementation of this command.- See Also:
- Constant Field Values
-
-