Uses of Interface
com.elasticpath.domain.order.OrderStatus

Packages that use OrderStatus
com.elasticpath.cmweb.ajaxbean   
com.elasticpath.cmweb.ajaxbean.impl   
com.elasticpath.cmweb.ajaxservice   
com.elasticpath.cmweb.ajaxservice.impl   
com.elasticpath.domain.order   
com.elasticpath.domain.order.impl   
com.elasticpath.domain.search   
com.elasticpath.domain.search.impl   
com.elasticpath.service.order   
com.elasticpath.service.order.impl   
 

Uses of OrderStatus in com.elasticpath.cmweb.ajaxbean
 

Methods in com.elasticpath.cmweb.ajaxbean that return OrderStatus
 OrderStatus OrderInfoAjaxBean.getOrderStatus()
          Get the order status.
 

Methods in com.elasticpath.cmweb.ajaxbean with parameters of type OrderStatus
 void OrderInfoAjaxBean.setOrderStatus(OrderStatus orderStatus)
          Set the order status.
 

Uses of OrderStatus in com.elasticpath.cmweb.ajaxbean.impl
 

Methods in com.elasticpath.cmweb.ajaxbean.impl that return OrderStatus
 OrderStatus OrderInfoAjaxBeanImpl.getOrderStatus()
          Get the order status.
 

Methods in com.elasticpath.cmweb.ajaxbean.impl with parameters of type OrderStatus
 void OrderInfoAjaxBeanImpl.setOrderStatus(OrderStatus orderStatus)
          Set the order status.
 

Uses of OrderStatus in com.elasticpath.cmweb.ajaxservice
 

Methods in com.elasticpath.cmweb.ajaxservice with parameters of type OrderStatus
 Order OrderAjaxService.updateOrderStatus(long orderUid, OrderStatus newOrderStatus)
          Update the status of the order with the given orderUid.
 

Uses of OrderStatus in com.elasticpath.cmweb.ajaxservice.impl
 

Methods in com.elasticpath.cmweb.ajaxservice.impl with parameters of type OrderStatus
 Order OrderAjaxServiceImpl.updateOrderStatus(long orderUid, OrderStatus newOrderStatus)
          Update the status of the order with the given orderUid.
 

Uses of OrderStatus in com.elasticpath.domain.order
 

Methods in com.elasticpath.domain.order that return OrderStatus
 OrderStatus Order.getStatus()
          Get the status of the order.
 

Methods in com.elasticpath.domain.order with parameters of type OrderStatus
 void Order.setStatus(OrderStatus status)
          Set the status of the order.
 

Uses of OrderStatus in com.elasticpath.domain.order.impl
 

Classes in com.elasticpath.domain.order.impl that implement OrderStatus
 class OrderStatusImpl
          Represents the customer order status.
 

Methods in com.elasticpath.domain.order.impl that return OrderStatus
 OrderStatus OrderImpl.getStatus()
          Get the status of the order.
 

Methods in com.elasticpath.domain.order.impl with parameters of type OrderStatus
 void OrderImpl.setStatus(OrderStatus status)
          Set the status of the order.
 

Uses of OrderStatus in com.elasticpath.domain.search
 

Methods in com.elasticpath.domain.search that return OrderStatus
 OrderStatus OrderSearchCriteria.getOrderStatus()
          Get the order status.
 

Methods in com.elasticpath.domain.search with parameters of type OrderStatus
 void OrderSearchCriteria.setOrderStatus(OrderStatus orderStatus)
          Set the order status.
 

Uses of OrderStatus in com.elasticpath.domain.search.impl
 

Methods in com.elasticpath.domain.search.impl that return OrderStatus
 OrderStatus OrderSearchCriteriaImpl.getOrderStatus()
          Get the order status.
 

Methods in com.elasticpath.domain.search.impl with parameters of type OrderStatus
 void OrderSearchCriteriaImpl.setOrderStatus(OrderStatus orderStatus)
          Set the order status.
 

Uses of OrderStatus in com.elasticpath.service.order
 

Fields in com.elasticpath.service.order declared as OrderStatus
static OrderStatus OrderStatusFactory.APPROVED
          The OrderStatus instance for order approved.
static OrderStatus OrderStatusFactory.CANCELLED
          The OrderStatus instance for order cancelled.
static OrderStatus OrderStatusFactory.COMPLETED
          The OrderStatus instance for order completed.
static OrderStatus OrderStatusFactory.ONHOLD
          The OrderStatus instance for order on hold.
static OrderStatus OrderStatusFactory.PLACED
          The OrderStatus instance for order placed.
static OrderStatus OrderStatusFactory.REJECTED
          The OrderStatus instance for order rejected.
 

Methods in com.elasticpath.service.order that return OrderStatus
 OrderStatus OrderStatusFactory.getOrderStatus(int statusCode)
          Return the OrderStatus instance based on the given status code.
 

Uses of OrderStatus in com.elasticpath.service.order.impl
 

Methods in com.elasticpath.service.order.impl that return OrderStatus
 OrderStatus OrderStatusFactoryImpl.getOrderStatus(int statusCode)
          Return the OrderStatus instance based on the given status code.