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

Packages that use CustomerCreditCard
com.elasticpath.cmweb.ajaxservice   
com.elasticpath.cmweb.ajaxservice.impl   
com.elasticpath.domain.customer   
com.elasticpath.domain.customer.impl   
com.elasticpath.service.customer   
com.elasticpath.service.customer.impl   
com.elasticpath.sfweb.formbean   
com.elasticpath.sfweb.formbean.impl   
 

Uses of CustomerCreditCard in com.elasticpath.cmweb.ajaxservice
 

Methods in com.elasticpath.cmweb.ajaxservice with parameters of type CustomerCreditCard
 Customer CsrAjaxService.addCreditCard(Customer customer, CustomerCreditCard customerCreditCard)
          Adds a new credit card to the given customer.
 

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

Methods in com.elasticpath.cmweb.ajaxservice.impl with parameters of type CustomerCreditCard
 Customer CsrAjaxServiceImpl.addCreditCard(Customer customer, CustomerCreditCard customerCreditCard)
          Adds a new credit card to the given customer.
 

Uses of CustomerCreditCard in com.elasticpath.domain.customer
 

Methods in com.elasticpath.domain.customer that return CustomerCreditCard
 CustomerCreditCard Customer.getCreditCardByUid(long creditCardUid)
          Returns the customer's credit card with the matching UID.
 

Methods in com.elasticpath.domain.customer with parameters of type CustomerCreditCard
 void Customer.addCreditCard(CustomerCreditCard creditCard)
          Add a credit card to this customer.
 void Customer.removeCreditCard(CustomerCreditCard creditCard)
          Removes an CustomerCreditCard from the list of credit cards.
 void Customer.setPreferredCreditCard(CustomerCreditCard preferredCreditCard)
          Sets the customer's default (preferred) credit card.
 void Customer.updateCreditCard(CustomerCreditCard creditCard)
          Notifies a Customer that a credit card has been updated (The credit card default flags will be set accordingly).
 

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

Classes in com.elasticpath.domain.customer.impl that implement CustomerCreditCard
 class CustomerCreditCardImpl
          The default implementation of Customer.
 

Methods in com.elasticpath.domain.customer.impl that return CustomerCreditCard
 CustomerCreditCard CustomerImpl.getCreditCardByUid(long creditCardUid)
          Returns the customer's credit card with the matching UID.
 

Methods in com.elasticpath.domain.customer.impl with parameters of type CustomerCreditCard
 void CustomerImpl.addCreditCard(CustomerCreditCard creditCard)
          Add a credit card to this customer.
 void CustomerImpl.removeCreditCard(CustomerCreditCard creditCard)
          Removes an CustomerCreditCard from the list of credit cards.
 void CustomerImpl.setPreferredCreditCard(CustomerCreditCard preferredCreditCard)
          Sets the customer's default (preferred) credit card.
 void CustomerImpl.updateCreditCard(CustomerCreditCard creditCard)
          Notifies a Customer that a credit card has been updated (The credit card default flags will be set accordingly).
 

Uses of CustomerCreditCard in com.elasticpath.service.customer
 

Methods in com.elasticpath.service.customer with parameters of type CustomerCreditCard
 Customer CustomerService.addCustomerCreditCard(Customer customer, CustomerCreditCard creditCard)
          Adds a credit card to a customer.
 

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

Methods in com.elasticpath.service.customer.impl with parameters of type CustomerCreditCard
 Customer CustomerServiceImpl.addCustomerCreditCard(Customer customer, CustomerCreditCard creditCard)
          Adds a credit card to a customer.
 

Uses of CustomerCreditCard in com.elasticpath.sfweb.formbean
 

Methods in com.elasticpath.sfweb.formbean that return CustomerCreditCard
 CustomerCreditCard CheckoutCreditCardFormBean.getNewCreditCard()
          Get a new CustomerCreditCard object to store a newly entered credit card.
 CustomerCreditCard BillingAndReviewFormBean.getSelectedExistingCreditCard()
          Returns the existing credit card selected by the user.
 

Methods in com.elasticpath.sfweb.formbean with parameters of type CustomerCreditCard
 void CheckoutCreditCardFormBean.setNewCreditCard(CustomerCreditCard creditCard)
          Set the credit card object to be used to record a new credit card.
 

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

Methods in com.elasticpath.sfweb.formbean.impl that return CustomerCreditCard
 CustomerCreditCard CheckoutCreditCardFormBeanImpl.getNewCreditCard()
          Get a new CustomerCreditCard object to store a newly entered credit card.
 CustomerCreditCard BillingAndReviewFormBeanImpl.getSelectedExistingCreditCard()
          Returns the existing credit card selected by the user.
 

Methods in com.elasticpath.sfweb.formbean.impl with parameters of type CustomerCreditCard
 void CheckoutCreditCardFormBeanImpl.setNewCreditCard(CustomerCreditCard creditCard)
          Set the credit card object to be used to record a new credit card.