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

Packages that use OrderAddress
com.elasticpath.cmweb.ajaxservice   
com.elasticpath.cmweb.ajaxservice.impl   
com.elasticpath.domain.order   
com.elasticpath.domain.order.impl   
 

Uses of OrderAddress in com.elasticpath.cmweb.ajaxservice
 

Methods in com.elasticpath.cmweb.ajaxservice with parameters of type OrderAddress
 Order OrderAjaxService.updateOrderBillingAddress(long orderUid, OrderAddress billingAddress)
          Update the billing address of the order with the given orderUid.
 

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

Methods in com.elasticpath.cmweb.ajaxservice.impl with parameters of type OrderAddress
 Order OrderAjaxServiceImpl.updateOrderBillingAddress(long orderUid, OrderAddress billingAddress)
          Update the billing address of the order with the given orderUid.
 

Uses of OrderAddress in com.elasticpath.domain.order
 

Methods in com.elasticpath.domain.order that return OrderAddress
 OrderAddress Order.getBillingAddress()
          Get the billing address corresponding to this order.
 OrderAddress OrderShipment.getShipmentAddress()
          Get the shipment address corresponding to this shipment.
 

Methods in com.elasticpath.domain.order with parameters of type OrderAddress
 void Order.setBillingAddress(OrderAddress billingAddress)
          Set the billing address corresponding to this order.
 void OrderShipment.setShipmentAddress(OrderAddress shipmentAddress)
          Set the shipping address corresponding to this shipment.
 

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

Classes in com.elasticpath.domain.order.impl that implement OrderAddress
 class OrderAddressImpl
          Address that is stored as part of a completed order.
 

Methods in com.elasticpath.domain.order.impl that return OrderAddress
 OrderAddress OrderImpl.getBillingAddress()
          Get the billing address corresponding to this order.
 OrderAddress OrderShipmentImpl.getShipmentAddress()
          Get the shipment address corresponding to this shipment.
 

Methods in com.elasticpath.domain.order.impl with parameters of type OrderAddress
 void OrderImpl.setBillingAddress(OrderAddress orderBillingAddress)
          Set the billing address corresponding to this order.
 void OrderShipmentImpl.setShipmentAddress(OrderAddress shipmentAddress)
          Set the shipping address corresponding to this shipment.