com.ibm.commerce.messaging.commands
Interface OrderStatusServiceCmd

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

public interface OrderStatusServiceCmd
extends ControllerCommand

This OrderStatusService command allows an external system to update the status information of an existing order within WebSphere Commerce by sending a webservice request.


Field Summary
static java.lang.String COPYRIGHT
The internal copyright field.
static java.lang.String defaultCommandClassName
The default class containing the implementation of the OrderStatus command.
static java.lang.String NAME
The name of the class.
Method Summary
boolean doPostProcess(TypedProperty aRequestProperty)
Performs a verification check after the command executes.
boolean doPreProcess(TypedProperty aRequestProperty)
Performs a verification check before the command executes.
boolean doProcess(TypedProperty aRequestProperty)
Performs the proper business logic for the OrderStatus command.
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
The internal copyright field.
See Also:
Constant Field Values

NAME

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

defaultCommandClassName

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

doPostProcess

public boolean doPostProcess(TypedProperty aRequestProperty)
                      throws ECException
Performs a verification check after the command executes.
Parameters:
aRequestProperty - com.ibm.commerce.datatype.TypedProperty
Returns:
true for successful verification check false for unsuccessful verification check
Throws:
ECException

doPreProcess

public boolean doPreProcess(TypedProperty aRequestProperty)
                     throws ECException
Performs a verification check before the command executes.
Parameters:
aRequestProperty - com.ibm.commerce.datatype.TypedProperty
Returns:
true for successful verification check false for unsuccessful verification check
Throws:
ECException

doProcess

public boolean doProcess(TypedProperty aRequestProperty)
                  throws ECException
Performs the proper business logic for the OrderStatus command.
Parameters:
aRequestProperty - The request property.
Returns:
true for successful execution false for unsuccessful execution
Throws:
ECException

Feedback