com.ibm.commerce.order.commands

Class CreateOrderOnSuccessStatusUpdateCmdImpl

    • Field Detail

      • COPYRIGHT

        public static final java.lang.String COPYRIGHT
        IBM copyright notice field.
        See Also:
        Constant Field Values
      • CLASS_NAME

        public static final java.lang.String CLASS_NAME
        The name of the Command class.
    • Constructor Detail

      • CreateOrderOnSuccessStatusUpdateCmdImpl

        public CreateOrderOnSuccessStatusUpdateCmdImpl()
    • Method Detail

      • setOrderId

        public void setOrderId(java.lang.Long anOrderId)
        This method sets the identifier of the Order to update.
        Parameters:
        anOrderId - The long that specifies the Order identifier.
      • getOrderId

        public java.lang.Long getOrderId()
        This method returns the identifier of the Order to update.
        Returns:
        The long that specifies the Order identifier.
      • setExternalOrderId

        public void setExternalOrderId(java.lang.String anExternalOrderId)
        This method sets the external order id.
        Parameters:
        anExternalOrderId - The string that specifies the external order id.
      • getExternalOrderId

        public java.lang.String getExternalOrderId()
        This method returns the external order id.
        Returns:
        The string that specifies the external order id.
      • setRequestProperties

        public void setRequestProperties(TypedProperty aReqParms)
                                  throws ECException
        The WebController calls the setRequestProperties method before invoking the execute method in this command. It is the responsibility of the implementer of the ControllerCommand to extract the required input parameters from the request properties and perform checking.
        Specified by:
        setRequestProperties in interface ControllerCommand
        Overrides:
        setRequestProperties in class ControllerCommandImpl
        Parameters:
        aReqParms - A Typed Property that represents the details of request properties.
        Throws:
        ECException
        See Also:
        ControllerCommand#setRequestProperties(TypedProperty)