com.ibm.commerce.tools.optools.order.commands
Interface CSREmailOrderCmd

All Superinterfaces:
AccCommand, ControllerCommand, ECCommand, Protectable, ToolsControllerCommand
All Known Implementing Classes:
CSREmailOrderCmdImpl

public interface CSREmailOrderCmd
extends ToolsControllerCommand

Composes and sends an OrderReceived message with the supplied recipient, sender and subject.

Behavior

Parameters

XML
An input xml string that contains all required data for sending the message type.
 Example xml_string:
  <?xml version="1.0" encoding "UTF-8">
   <orderId>10001</orderId>
   <messageType>126</messageType>
   <recipient>jones@abc.com</recipient>
   <sender>James Woo</sender>
   <subject>Order summary report</subject>
   <CC>  </CC>
   <BCC>  </BCC>
   <sender>  </sender>
   <URL>DialogNavigation</URL>
   <XMLFile>xml file name</XMLFile>
 </xml>
 

Exception Conditions

Error View:


Field Summary
static java.lang.String COPYRIGHT
IBM copyright notice field.
static java.lang.String NAME
The name of this command.
Fields inherited from interface com.ibm.commerce.command.ECCommand
defaultCommandClassName
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 this command.
See Also:
Constant Field Values

Feedback