com.ibm.commerce.edp.beans

Class EDPCompleteOrderActivityDataBean

    • Field Summary

      Fields 
      Modifier and Type Field and Description
      static java.lang.String COPYRIGHT
      The IBM Copyright notice field.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      java.lang.String getCommandInterfaceName()
      This method gets the command interface name that populates this data bean.
      java.lang.Long getOrderId()
      This method gets the order ID.
      java.util.ArrayList getPaymentActivityHistory()
      This method returns the payment activity history as an ArrayList Object of ActivityLogRecordData, which include the activities of Payment Instruction(s) and Payments(s) of the order.
      TypedProperty getRequestProperties()
      This method gets the parameters passed as part of the URL if any.
      void setCommandInterfaceName(java.lang.String ifname)
      This method sets the command interface name.
      void setOrderId(java.lang.Long orderId)
      This method sets the order ID.
      void setPaymentActivityHistory(java.util.ArrayList paramPaymentActivityHistory)
      This method sets the payment activity history records, which include the activities of Payment Instruction(s) and Payment(s) of the order.
      void setRequestProperties(TypedProperty aRequestProperties)
      This method sets the parameters passed as part of the URL if any, which should includes the order ID.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • COPYRIGHT

        public static final java.lang.String COPYRIGHT
        The IBM Copyright notice field.
        See Also:
        Constant Field Values
    • Constructor Detail

      • EDPCompleteOrderActivityDataBean

        public EDPCompleteOrderActivityDataBean()
    • Method Detail

      • setCommandInterfaceName

        public void setCommandInterfaceName(java.lang.String ifname)
        This method sets the command interface name. The data can be got through the specified databean command.
        Parameters:
        ifname - A String that specifies the command interface name to be set.
      • getCommandInterfaceName

        public java.lang.String getCommandInterfaceName()
        This method gets the command interface name that populates this data bean. The default command interfaceName is com.ibm.commerce.edp.commands.
        Returns:
        A String that specifies the name of the command interface.
      • setOrderId

        public void setOrderId(java.lang.Long orderId)
        This method sets the order ID. All activities of Payment Instruction(s) and Payment(s) of the order with the order ID will be populated in this data bean.
        Parameters:
        orderId - A Long that specifies the order ID to be set.
      • getOrderId

        public java.lang.Long getOrderId()
        This method gets the order ID. All activities of Payment Instruction(s) and Payment(s) of the order with the order ID will be populated in this data bean.
        Returns:
        A Long that specifies the current order ID.
      • setPaymentActivityHistory

        public void setPaymentActivityHistory(java.util.ArrayList paramPaymentActivityHistory)
        This method sets the payment activity history records, which include the activities of Payment Instruction(s) and Payment(s) of the order.
        Parameters:
        paramPaymentActivityHistory - An ArrayList that represents the list of payment activity records.
      • getPaymentActivityHistory

        public java.util.ArrayList getPaymentActivityHistory()
        This method returns the payment activity history as an ArrayList Object of ActivityLogRecordData, which include the activities of Payment Instruction(s) and Payments(s) of the order.
        Returns:
        An ArrayList that represents the list of ActivityLogRecordData.
      • setRequestProperties

        public void setRequestProperties(TypedProperty aRequestProperties)
        This method sets the parameters passed as part of the URL if any, which should includes the order ID. And this method sets the order Id from the parameters.
        Parameters:
        aRequestProperties - The RequestProperties that contains the input parameters.
      • getRequestProperties

        public TypedProperty getRequestProperties()
        This method gets the parameters passed as part of the URL if any.
        Returns:
        The RequestProperties that contains the input parameters.