com.elasticpath.cmweb.ajaxbean
Interface OrderInfoAjaxBean

All Known Implementing Classes:
OrderInfoAjaxBeanImpl

public interface OrderInfoAjaxBean

This bean provides access to order-related data needed for display in the Javascript UI. Note that the order object itself is not in this bean to keep the bean light-weight and suitable for search functionality.


Method Summary
 java.lang.String getCustomerName()
          Get the customer name of the order.
 java.util.Date getOrderCreatedDate()
          Get the order created date.
 java.lang.String getOrderNumber()
          Gets the order number.
 OrderStatus getOrderStatus()
          Get the order status.
 java.lang.String getOrderTotal()
          Get the order total.
 long getOrderUidPk()
          Gets the unique identifier for this domain model object.
 OrderPaymentStatus getPaymentStatus()
          Get the order payment status.
 OrderShipmentStatus getShipmentStatus()
          Get the order shipment status.
 void setCustomerName(java.lang.String customerName)
          Set the customer name of the order.
 void setOrderCreatedDate(java.util.Date createdDate)
          Set the order created date.
 void setOrderNumber(java.lang.String orderNumber)
          Sets the order number.
 void setOrderStatus(OrderStatus orderStatus)
          Set the order status.
 void setOrderTotal(java.lang.String orderTotal)
          Set the order total.
 void setOrderUidPk(long orderUidPk)
          Sets the unique identifier for this domain model object.
 void setPaymentStatus(OrderPaymentStatus paymentStatus)
          Set the payment status.
 void setShipmentStatus(OrderShipmentStatus shipmentStatus)
          Set the order shipment status.
 

Method Detail

getCustomerName

java.lang.String getCustomerName()
Get the customer name of the order.

Returns:
the customer name of the order.

getOrderCreatedDate

java.util.Date getOrderCreatedDate()
Get the order created date.

Returns:
the order created date.

getOrderNumber

java.lang.String getOrderNumber()
Gets the order number.

Returns:
the order number.

getOrderStatus

OrderStatus getOrderStatus()
Get the order status.

Returns:
the order status.

getOrderTotal

java.lang.String getOrderTotal()
Get the order total.

Returns:
orderTotal the order total.

getOrderUidPk

long getOrderUidPk()
Gets the unique identifier for this domain model object.

Returns:
the unique identifier.

getPaymentStatus

OrderPaymentStatus getPaymentStatus()
Get the order payment status.

Returns:
the order status.

getShipmentStatus

OrderShipmentStatus getShipmentStatus()
Get the order shipment status.

Returns:
the order shipmentstatus.

setCustomerName

void setCustomerName(java.lang.String customerName)
Set the customer name of the order.

Parameters:
customerName - the customer name of the order.

setOrderCreatedDate

void setOrderCreatedDate(java.util.Date createdDate)
Set the order created date.

Parameters:
createdDate - the order created date.

setOrderNumber

void setOrderNumber(java.lang.String orderNumber)
Sets the order number.

Parameters:
orderNumber - the order number.

setOrderStatus

void setOrderStatus(OrderStatus orderStatus)
Set the order status.

Parameters:
orderStatus - the order status.

setOrderTotal

void setOrderTotal(java.lang.String orderTotal)
Set the order total.

Parameters:
orderTotal - the order total.

setOrderUidPk

void setOrderUidPk(long orderUidPk)
Sets the unique identifier for this domain model object.

Parameters:
orderUidPk - the new unique identifier.

setPaymentStatus

void setPaymentStatus(OrderPaymentStatus paymentStatus)
Set the payment status.

Parameters:
paymentStatus - the payment status.

setShipmentStatus

void setShipmentStatus(OrderShipmentStatus shipmentStatus)
Set the order shipment status.

Parameters:
shipmentStatus - the order shipment status.