Uses of Interface
com.elasticpath.domain.customer.CustomerAddress

Packages that use CustomerAddress
com.elasticpath.domain.customer   
com.elasticpath.domain.customer.impl   
com.elasticpath.service.customer   
com.elasticpath.service.customer.impl   
com.elasticpath.sfweb.ajax.service   
com.elasticpath.sfweb.ajax.service.impl   
com.elasticpath.sfweb.formbean   
com.elasticpath.sfweb.formbean.impl   
 

Uses of CustomerAddress in com.elasticpath.domain.customer
 

Methods in com.elasticpath.domain.customer that return CustomerAddress
 CustomerAddress Customer.getAddressByGuid(java.lang.String addressGuid)
          Returns the customer's address with the matching GUID.
 CustomerAddress Customer.getAddressByUid(long addressUid)
          Returns the customer's address with the matching UID.
 CustomerAddress CustomerCreditCard.getBillingAddress()
           
 CustomerAddress Customer.getPreferredBillingAddress()
          Get the preferred billing address.
 CustomerAddress Customer.getPreferredShippingAddress()
          Get the preferred shipping address.
 

Methods in com.elasticpath.domain.customer with parameters of type CustomerAddress
 void Customer.addAddress(CustomerAddress address)
          Adds an CustomerAddress to the list of addresses.
 void Customer.removeAddress(CustomerAddress address)
          Removes an CustomerAddress from the list of addresses.
 void CustomerCreditCard.setBillingAddress(CustomerAddress billingAddress)
           
 void Customer.setPreferredBillingAddress(CustomerAddress address)
          Set the preferred billing address.
 void Customer.setPreferredShippingAddress(CustomerAddress address)
          Set the preferred shipping address.
 

Uses of CustomerAddress in com.elasticpath.domain.customer.impl
 

Classes in com.elasticpath.domain.customer.impl that implement CustomerAddress
 class CustomerAddressImpl
          A Customer's address.
 

Methods in com.elasticpath.domain.customer.impl that return CustomerAddress
 CustomerAddress CustomerImpl.getAddressByGuid(java.lang.String addressGuid)
          Returns the customer's address with the matching GUID.
 CustomerAddress CustomerImpl.getAddressByUid(long addressUid)
          Returns the customer's address with the matching UID.
 CustomerAddress CustomerCreditCardImpl.getBillingAddress()
           
 CustomerAddress CustomerImpl.getPreferredBillingAddress()
          Get the preferred billing address.
 CustomerAddress CustomerImpl.getPreferredShippingAddress()
          Get the preferred shipping address.
 

Methods in com.elasticpath.domain.customer.impl with parameters of type CustomerAddress
 void CustomerImpl.addAddress(CustomerAddress address)
          Adds an CustomerAddress to the list of addresses.
 void CustomerImpl.removeAddress(CustomerAddress address)
          Removes an CustomerAddress from the list of addresses.
 void CustomerCreditCardImpl.setBillingAddress(CustomerAddress billingAddress)
           
 void CustomerImpl.setPreferredBillingAddress(CustomerAddress address)
          Set the preferred billing address.
 void CustomerImpl.setPreferredShippingAddress(CustomerAddress address)
          Set the preferred shipping address.
 

Uses of CustomerAddress in com.elasticpath.service.customer
 

Methods in com.elasticpath.service.customer with parameters of type CustomerAddress
 Customer CustomerService.addCustomerAddress(Customer customer, CustomerAddress address)
          Adds an address to a customer.
 

Uses of CustomerAddress in com.elasticpath.service.customer.impl
 

Methods in com.elasticpath.service.customer.impl with parameters of type CustomerAddress
 Customer CustomerServiceImpl.addCustomerAddress(Customer customer, CustomerAddress address)
          Adds an address to a customer.
 

Uses of CustomerAddress in com.elasticpath.sfweb.ajax.service
 

Methods in com.elasticpath.sfweb.ajax.service with parameters of type CustomerAddress
 ShoppingCartBean CustomerAjaxController.updateAddress(CustomerAddress address, boolean isShippingAddress, javax.servlet.http.HttpServletRequest request)
          Updates the billing or shipping address selection and adds the address if it is new.
 

Uses of CustomerAddress in com.elasticpath.sfweb.ajax.service.impl
 

Methods in com.elasticpath.sfweb.ajax.service.impl with parameters of type CustomerAddress
 ShoppingCartBean CustomerAjaxControllerImpl.updateAddress(CustomerAddress address, boolean isShippingAddress, javax.servlet.http.HttpServletRequest request)
          Updates the billing or shipping address selection and adds the address if it is new.
 

Uses of CustomerAddress in com.elasticpath.sfweb.formbean
 

Methods in com.elasticpath.sfweb.formbean that return CustomerAddress
 CustomerAddress CheckoutAddressFormBean.getNewAddress()
          Get a new Address object to store a newly entered address.
 

Methods in com.elasticpath.sfweb.formbean with parameters of type CustomerAddress
 void CheckoutAddressFormBean.setNewAddress(CustomerAddress address)
          Set the address object to be used to record a new address.
 

Uses of CustomerAddress in com.elasticpath.sfweb.formbean.impl
 

Methods in com.elasticpath.sfweb.formbean.impl that return CustomerAddress
 CustomerAddress CheckoutAddressFormBeanImpl.getNewAddress()
          Get a new Address object to store a newly entered address.
 

Methods in com.elasticpath.sfweb.formbean.impl with parameters of type CustomerAddress
 void CheckoutAddressFormBeanImpl.setNewAddress(CustomerAddress address)
          Set the address object to be used to record a new address.