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   
org.broadleafcommerce.profile.email.dao   
org.broadleafcommerce.profile.email.domain   
org.broadleafcommerce.profile.email.service   
 

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

Methods in org.broadleafcommerce.profile.core.dao that return Customer
 Customer CustomerDaoImpl.create()
           
 Customer CustomerDao.create()
           
 Customer CustomerDaoImpl.readCustomerByEmail(java.lang.String emailAddress)
           
 Customer CustomerDao.readCustomerByEmail(java.lang.String emailAddress)
           
 Customer CustomerDaoImpl.readCustomerById(java.lang.Long id)
           
 Customer CustomerDao.readCustomerById(java.lang.Long id)
           
 Customer CustomerDaoImpl.readCustomerByUsername(java.lang.String username)
           
 Customer CustomerDao.readCustomerByUsername(java.lang.String username)
           
 Customer CustomerDaoImpl.save(Customer customer)
           
 Customer CustomerDao.save(Customer customer)
           
 

Methods in org.broadleafcommerce.profile.core.dao with parameters of type Customer
 Customer CustomerDaoImpl.save(Customer customer)
           
 Customer CustomerDao.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 CustomerAddressImpl.customer
           
protected  Customer CustomerRoleImpl.customer
           
protected  Customer CustomerPhoneImpl.customer
           
 

Methods in org.broadleafcommerce.profile.core.domain that return Customer
 Customer CustomerAddress.getCustomer()
           
 Customer CustomerAddressImpl.getCustomer()
           
 Customer CustomerRoleImpl.getCustomer()
           
 Customer CustomerPhone.getCustomer()
           
 Customer CustomerRole.getCustomer()
           
 Customer CustomerPhoneImpl.getCustomer()
           
 

Methods in org.broadleafcommerce.profile.core.domain with parameters of type Customer
 void CustomerAddress.setCustomer(Customer customer)
           
 void CustomerAddressImpl.setCustomer(Customer customer)
           
 void CustomerRoleImpl.setCustomer(Customer customer)
           
 void CustomerPhone.setCustomer(Customer customer)
           
 void CustomerRole.setCustomer(Customer customer)
           
 void CustomerPhoneImpl.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(java.lang.Long customerId)
          Returns a Customer by first looking in the database, otherwise creating a new non-persisted Customer
 Customer CustomerServiceImpl.createCustomerFromId(java.lang.Long customerId)
           
 Customer CustomerService.readCustomerByEmail(java.lang.String emailAddress)
           
 Customer CustomerServiceImpl.readCustomerByEmail(java.lang.String emailAddress)
           
 Customer CustomerService.readCustomerById(java.lang.Long userId)
           
 Customer CustomerServiceImpl.readCustomerById(java.lang.Long id)
           
 Customer CustomerService.readCustomerByUsername(java.lang.String customerName)
           
 Customer CustomerServiceImpl.readCustomerByUsername(java.lang.String username)
           
 Customer CustomerService.registerCustomer(Customer customer, java.lang.String password, java.lang.String passwordConfirm)
           
 Customer CustomerServiceImpl.registerCustomer(Customer customer, java.lang.String password, java.lang.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.notifyPostRegisterListeners(Customer customer)
           
 Customer CustomerService.registerCustomer(Customer customer, java.lang.String password, java.lang.String passwordConfirm)
           
 Customer CustomerServiceImpl.registerCustomer(Customer customer, java.lang.String password, java.lang.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  java.util.HashMap EmailNotificationPasswordUpdatedHandler.constructPasswordChangeEmailTemplateVariables(Customer customer, java.lang.String newPassword)
           
 void PasswordUpdatedHandler.passwordChanged(PasswordReset passwordReset, Customer customer, java.lang.String newPassword)
           
 void EmailNotificationPasswordUpdatedHandler.passwordChanged(PasswordReset passwordReset, Customer customer, java.lang.String newPassword)
           
 

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, java.lang.String password, java.lang.String passwordConfirm, org.springframework.validation.Errors errors)
           
 

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

Methods in org.broadleafcommerce.profile.email.dao with parameters of type Customer
 void EmailReportingDao.recordClick(java.lang.Long emailId, Customer customer, java.lang.String destinationUri, java.lang.String queryString)
           
 void EmailReportingDaoImpl.recordClick(java.lang.Long emailId, Customer customer, java.lang.String destinationUri, java.lang.String queryString)
           
 

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

Fields in org.broadleafcommerce.profile.email.domain declared as Customer
protected  Customer EmailTrackingClicksImpl.customer
           
 

Methods in org.broadleafcommerce.profile.email.domain that return Customer
 Customer EmailTrackingClicks.getCustomer()
           
 Customer EmailTrackingClicksImpl.getCustomer()
           
 

Methods in org.broadleafcommerce.profile.email.domain with parameters of type Customer
 void EmailTrackingClicks.setCustomer(Customer customer)
           
 void EmailTrackingClicksImpl.setCustomer(Customer customer)
           
 

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

Methods in org.broadleafcommerce.profile.email.service with parameters of type Customer
 void EmailTrackingManager.recordClick(java.lang.Long emailId, java.util.Map<java.lang.String,java.lang.String> parameterMap, Customer customer, java.util.Map<java.lang.String,java.lang.String> extraValues)
           
 void EmailTrackingManagerImpl.recordClick(java.lang.Long emailId, java.util.Map<java.lang.String,java.lang.String> parameterMap, Customer customer, java.util.Map<java.lang.String,java.lang.String> extraValues)
           
 



Copyright © 2011. All Rights Reserved.