Uses of Interface
org.broadleafcommerce.profile.core.domain.Customer

Packages that use Customer
org.broadleafcommerce.profile.core.dao   
org.broadleafcommerce.profile.core.domain   
org.broadleafcommerce.profile.core.service   
org.broadleafcommerce.profile.core.service.handler   
org.broadleafcommerce.profile.core.service.listener   
org.broadleafcommerce.profile.core.service.validator   
 

Uses of Customer in org.broadleafcommerce.profile.core.dao
 

Methods in org.broadleafcommerce.profile.core.dao that return Customer
 Customer CustomerDao.create()
           
 Customer CustomerDaoImpl.create()
           
 Customer CustomerDao.readCustomerByEmail(String emailAddress)
          Returns the first customer that matches the passed in email.
 Customer CustomerDaoImpl.readCustomerByEmail(String emailAddress)
           
 Customer CustomerDao.readCustomerById(Long id)
           
 Customer CustomerDaoImpl.readCustomerById(Long id)
           
 Customer CustomerDao.readCustomerByUsername(String username)
          Returns the first customer that match the passed in username.
 Customer CustomerDaoImpl.readCustomerByUsername(String username)
           
 Customer CustomerDao.save(Customer customer)
           
 Customer CustomerDaoImpl.save(Customer customer)
           
 

Methods in org.broadleafcommerce.profile.core.dao that return types with arguments of type Customer
 List<Customer> CustomerDao.readCustomersByEmail(String emailAddress)
          Returns all customers that matches the passed in email.
 List<Customer> CustomerDaoImpl.readCustomersByEmail(String emailAddress)
           
 List<Customer> CustomerDao.readCustomersByUsername(String username)
          Returns all customers that match the passed in username.
 List<Customer> CustomerDaoImpl.readCustomersByUsername(String username)
           
 

Methods in org.broadleafcommerce.profile.core.dao with parameters of type Customer
 Customer CustomerDao.save(Customer customer)
           
 Customer CustomerDaoImpl.save(Customer customer)
           
 

Uses of Customer in org.broadleafcommerce.profile.core.domain
 

Classes in org.broadleafcommerce.profile.core.domain that implement Customer
 class CustomerImpl
           
 

Fields in org.broadleafcommerce.profile.core.domain declared as Customer
protected  Customer CustomerRoleImpl.customer
           
protected  Customer CustomerPhoneImpl.customer
           
protected  Customer CustomerPaymentImpl.customer
           
protected  Customer CustomerAttributeImpl.customer
          The customer.
protected  Customer CustomerAddressImpl.customer
           
 

Methods in org.broadleafcommerce.profile.core.domain that return Customer
 Customer CustomerRoleImpl.getCustomer()
           
 Customer CustomerPhoneImpl.getCustomer()
           
 Customer CustomerAddress.getCustomer()
           
 Customer CustomerRole.getCustomer()
           
 Customer CustomerPaymentImpl.getCustomer()
           
 Customer CustomerAttributeImpl.getCustomer()
           
 Customer CustomerAttribute.getCustomer()
          Gets the associated customer.
 Customer CustomerAddressImpl.getCustomer()
           
 Customer CustomerPayment.getCustomer()
           
 Customer CustomerPhone.getCustomer()
           
 

Methods in org.broadleafcommerce.profile.core.domain with parameters of type Customer
 void CustomerRoleImpl.setCustomer(Customer customer)
           
 void CustomerPhoneImpl.setCustomer(Customer customer)
           
 void CustomerAddress.setCustomer(Customer customer)
           
 void CustomerRole.setCustomer(Customer customer)
           
 void CustomerPaymentImpl.setCustomer(Customer customer)
           
 void CustomerAttributeImpl.setCustomer(Customer customer)
           
 void CustomerAttribute.setCustomer(Customer customer)
          Sets the associated customer.
 void CustomerAddressImpl.setCustomer(Customer customer)
           
 void CustomerPayment.setCustomer(Customer customer)
           
 void CustomerPhone.setCustomer(Customer customer)
           
 

Uses of Customer in org.broadleafcommerce.profile.core.service
 

Methods in org.broadleafcommerce.profile.core.service that return Customer
 Customer CustomerService.changePassword(PasswordChange passwordChange)
           
 Customer CustomerServiceImpl.changePassword(PasswordChange passwordChange)
           
 Customer CustomerService.createCustomer()
           
 Customer CustomerServiceImpl.createCustomer()
           
 Customer CustomerService.createCustomerFromId(Long customerId)
          Returns a Customer by first looking in the database, otherwise creating a new non-persisted Customer
 Customer CustomerServiceImpl.createCustomerFromId(Long customerId)
           
 Customer CustomerService.createNewCustomer()
          Returns a non-persisted Customer.
 Customer CustomerServiceImpl.createNewCustomer()
           
 Customer CustomerPaymentService.deleteCustomerPaymentFromCustomer(Customer customer, CustomerPayment payment)
           
 Customer CustomerPaymentServiceImpl.deleteCustomerPaymentFromCustomer(Customer customer, CustomerPayment payment)
           
 Customer CustomerService.readCustomerByEmail(String emailAddress)
           
 Customer CustomerServiceImpl.readCustomerByEmail(String emailAddress)
           
 Customer CustomerService.readCustomerById(Long userId)
           
 Customer CustomerServiceImpl.readCustomerById(Long id)
           
 Customer CustomerService.readCustomerByUsername(String customerName)
           
 Customer CustomerServiceImpl.readCustomerByUsername(String username)
           
 Customer CustomerService.registerCustomer(Customer customer, String password, String passwordConfirm)
           
 Customer CustomerServiceImpl.registerCustomer(Customer customer, String password, String passwordConfirm)
           
 Customer CustomerService.resetPassword(PasswordReset passwordReset)
           
 Customer CustomerServiceImpl.resetPassword(PasswordReset passwordReset)
           
 Customer CustomerService.saveCustomer(Customer customer)
           
 Customer CustomerServiceImpl.saveCustomer(Customer customer)
           
 Customer CustomerService.saveCustomer(Customer customer, boolean register)
           
 Customer CustomerServiceImpl.saveCustomer(Customer customer, boolean register)
           
 

Methods in org.broadleafcommerce.profile.core.service with parameters of type Customer
protected  void CustomerServiceImpl.checkCustomer(Customer customer, GenericResponse response)
           
protected  void CustomerServiceImpl.createRegisteredCustomerRoles(Customer customer)
          Subclassed implementations can assign unique roles for various customer types
 Customer CustomerPaymentService.deleteCustomerPaymentFromCustomer(Customer customer, CustomerPayment payment)
           
 Customer CustomerPaymentServiceImpl.deleteCustomerPaymentFromCustomer(Customer customer, CustomerPayment payment)
           
 CustomerPayment CustomerPaymentService.findDefaultPaymentForCustomer(Customer customer)
           
 CustomerPayment CustomerPaymentServiceImpl.findDefaultPaymentForCustomer(Customer customer)
           
 String CustomerServiceImpl.getSalt(Customer customer)
          Optionally provide a salt based on a customer.
protected  void CustomerServiceImpl.notifyPostRegisterListeners(Customer customer)
           
 Customer CustomerService.registerCustomer(Customer customer, String password, String passwordConfirm)
           
 Customer CustomerServiceImpl.registerCustomer(Customer customer, String password, String passwordConfirm)
           
 Customer CustomerService.saveCustomer(Customer customer)
           
 Customer CustomerServiceImpl.saveCustomer(Customer customer)
           
 Customer CustomerService.saveCustomer(Customer customer, boolean register)
           
 Customer CustomerServiceImpl.saveCustomer(Customer customer, boolean register)
           
 

Uses of Customer in org.broadleafcommerce.profile.core.service.handler
 

Methods in org.broadleafcommerce.profile.core.service.handler with parameters of type Customer
protected  HashMap EmailNotificationPasswordUpdatedHandler.constructPasswordChangeEmailTemplateVariables(Customer customer, String newPassword)
          Deprecated.  
 void PasswordUpdatedHandler.passwordChanged(PasswordReset passwordReset, Customer customer, String newPassword)
           
 void EmailNotificationPasswordUpdatedHandler.passwordChanged(PasswordReset passwordReset, Customer customer, String newPassword)
          Deprecated.  
 

Uses of Customer in org.broadleafcommerce.profile.core.service.listener
 

Methods in org.broadleafcommerce.profile.core.service.listener with parameters of type Customer
 void PostRegistrationObserver.processRegistrationEvent(Customer customer)
           
 

Uses of Customer in org.broadleafcommerce.profile.core.service.validator
 

Methods in org.broadleafcommerce.profile.core.service.validator with parameters of type Customer
 void RegistrationValidator.validate(Customer customer, String password, String passwordConfirm, org.springframework.validation.Errors errors)
           
 



Copyright © 2013. All Rights Reserved.