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

Packages that use CustomerSession
com.elasticpath.domain.customer   
com.elasticpath.domain.customer.impl   
com.elasticpath.domain.shoppingcart   
com.elasticpath.domain.shoppingcart.impl   
com.elasticpath.service.customer   
com.elasticpath.service.customer.impl   
com.elasticpath.service.shoppingcart   
com.elasticpath.service.shoppingcart.impl   
 

Uses of CustomerSession in com.elasticpath.domain.customer
 

Methods in com.elasticpath.domain.customer that return CustomerSession
 CustomerSession CustomerSession.getClone()
          Creates a copy of the CustomerSession.
 

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

Classes in com.elasticpath.domain.customer.impl that implement CustomerSession
 class CustomerSessionImpl
          The default implementation of CustomerSession.
 

Methods in com.elasticpath.domain.customer.impl that return CustomerSession
 CustomerSession CustomerSessionImpl.getClone()
          Returns a copy of this customer session.
 

Uses of CustomerSession in com.elasticpath.domain.shoppingcart
 

Methods in com.elasticpath.domain.shoppingcart that return CustomerSession
 CustomerSession ShoppingCart.getCustomerSession()
          Return the CustomerSession.
 

Methods in com.elasticpath.domain.shoppingcart with parameters of type CustomerSession
 void ShoppingCart.setCustomerSession(CustomerSession customerSession)
          Set the CustomerSession.
 

Uses of CustomerSession in com.elasticpath.domain.shoppingcart.impl
 

Methods in com.elasticpath.domain.shoppingcart.impl that return CustomerSession
 CustomerSession ShoppingCartImpl.getCustomerSession()
          Return the CustomerSession.
 

Methods in com.elasticpath.domain.shoppingcart.impl with parameters of type CustomerSession
 void ShoppingCartImpl.setCustomerSession(CustomerSession customerSession)
          Set the CustomerSession.
 

Uses of CustomerSession in com.elasticpath.service.customer
 

Methods in com.elasticpath.service.customer that return CustomerSession
 CustomerSession CustomerSessionService.add(CustomerSession customerSession)
          Adds the given customer session.
 CustomerSession CustomerSessionService.findByGuid(java.lang.String guid)
          Find the customer session with the given guid.
 CustomerSession CustomerSessionService.get(long customerSessionUid)
          Get the customerSession with the given UID.
 CustomerSession CustomerSessionService.load(long customerSessionUid)
          Load the customer session with the given UID.
 

Methods in com.elasticpath.service.customer with parameters of type CustomerSession
 CustomerSession CustomerSessionService.add(CustomerSession customerSession)
          Adds the given customer session.
 void CustomerSessionService.update(CustomerSession customerSession)
          Updates the given customer session.
 void CustomerSessionService.update(CustomerSession customerSession, Customer customer)
          Updates the given customer session.
 

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

Methods in com.elasticpath.service.customer.impl that return CustomerSession
 CustomerSession CustomerSessionServiceImpl.add(CustomerSession customerSession)
          Adds the given customer session.
 CustomerSession CustomerSessionServiceImpl.findByGuid(java.lang.String guid)
          Find the customer session with the given guid.
 CustomerSession CustomerSessionServiceImpl.get(long customerSessionUid)
          Get the customerSession with the given UID.
 CustomerSession CustomerSessionServiceImpl.load(long customerSessionUid)
          Load the customer session with the given UID.
 

Methods in com.elasticpath.service.customer.impl with parameters of type CustomerSession
 CustomerSession CustomerSessionServiceImpl.add(CustomerSession customerSession)
          Adds the given customer session.
 void CustomerSessionServiceImpl.update(CustomerSession customerSession)
          Updates the given customer session.
 void CustomerSessionServiceImpl.update(CustomerSession customerSession, Customer customer)
          Updates the given customer session.
 

Uses of CustomerSession in com.elasticpath.service.shoppingcart
 

Methods in com.elasticpath.service.shoppingcart with parameters of type CustomerSession
 ShoppingCart ShoppingCartService.getCartByCustomerSession(CustomerSession customerSession)
          This method retrieves the shopping cart for the given customer session.
 

Uses of CustomerSession in com.elasticpath.service.shoppingcart.impl
 

Methods in com.elasticpath.service.shoppingcart.impl with parameters of type CustomerSession
 ShoppingCart ShoppingCartServiceImpl.getCartByCustomerSession(CustomerSession customerSession)
          This method retrieves the shopping cart for the given customer session.