| Modifier and Type | Method and Description |
|---|---|
Customer |
CustomerDaoImpl.create() |
Customer |
CustomerDao.create() |
Customer |
CustomerDaoImpl.readCustomerByEmail(String emailAddress) |
Customer |
CustomerDao.readCustomerByEmail(String emailAddress)
Returns the first customer that matches the passed in email.
|
Customer |
CustomerDaoImpl.readCustomerById(Long id) |
Customer |
CustomerDao.readCustomerById(Long id) |
Customer |
CustomerDaoImpl.readCustomerByUsername(String username) |
Customer |
CustomerDao.readCustomerByUsername(String username)
Returns the first customer that match the passed in username.
|
Customer |
CustomerDaoImpl.save(Customer customer) |
Customer |
CustomerDao.save(Customer customer) |
| Modifier and Type | Method and Description |
|---|---|
List<Customer> |
CustomerDaoImpl.readCustomersByEmail(String emailAddress) |
List<Customer> |
CustomerDao.readCustomersByEmail(String emailAddress)
Returns all customers that matches the passed in email.
|
List<Customer> |
CustomerDaoImpl.readCustomersByUsername(String username) |
List<Customer> |
CustomerDao.readCustomersByUsername(String username)
Returns all customers that match the passed in username.
|
| Modifier and Type | Method and Description |
|---|---|
Customer |
CustomerDaoImpl.save(Customer customer) |
Customer |
CustomerDao.save(Customer customer) |
| Modifier and Type | Class and Description |
|---|---|
class |
CustomerImpl |
| Modifier and Type | Field and Description |
|---|---|
protected Customer |
CustomerAttributeImpl.customer
The customer.
|
protected Customer |
CustomerPhoneImpl.customer |
protected Customer |
CustomerAddressImpl.customer |
protected Customer |
CustomerPaymentImpl.customer |
protected Customer |
CustomerRoleImpl.customer |
| Modifier and Type | Method and Description |
|---|---|
Customer |
CustomerAttributeImpl.getCustomer() |
Customer |
CustomerAttribute.getCustomer()
Gets the associated customer.
|
Customer |
CustomerPhoneImpl.getCustomer() |
Customer |
CustomerAddressImpl.getCustomer() |
Customer |
CustomerPaymentImpl.getCustomer() |
Customer |
CustomerPhone.getCustomer() |
Customer |
CustomerAddress.getCustomer() |
Customer |
CustomerPayment.getCustomer() |
Customer |
CustomerRoleImpl.getCustomer() |
Customer |
CustomerRole.getCustomer() |
| Modifier and Type | Method and Description |
|---|---|
void |
CustomerAttributeImpl.setCustomer(Customer customer) |
void |
CustomerAttribute.setCustomer(Customer customer)
Sets the associated customer.
|
void |
CustomerPhoneImpl.setCustomer(Customer customer) |
void |
CustomerAddressImpl.setCustomer(Customer customer) |
void |
CustomerPaymentImpl.setCustomer(Customer customer) |
void |
CustomerPhone.setCustomer(Customer customer) |
void |
CustomerAddress.setCustomer(Customer customer) |
void |
CustomerPayment.setCustomer(Customer customer) |
void |
CustomerRoleImpl.setCustomer(Customer customer) |
void |
CustomerRole.setCustomer(Customer customer) |
| Modifier and Type | Method and Description |
|---|---|
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) |
| Modifier and Type | Method and Description |
|---|---|
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) |
| Modifier and Type | Method and Description |
|---|---|
protected HashMap |
EmailNotificationPasswordUpdatedHandler.constructPasswordChangeEmailTemplateVariables(Customer customer,
String newPassword)
Deprecated.
|
void |
EmailNotificationPasswordUpdatedHandler.passwordChanged(PasswordReset passwordReset,
Customer customer,
String newPassword)
Deprecated.
|
void |
PasswordUpdatedHandler.passwordChanged(PasswordReset passwordReset,
Customer customer,
String newPassword) |
| Modifier and Type | Method and Description |
|---|---|
void |
PostRegistrationObserver.processRegistrationEvent(Customer customer) |
| Modifier and Type | Method and Description |
|---|---|
void |
RegistrationValidator.validate(Customer customer,
String password,
String passwordConfirm,
org.springframework.validation.Errors errors) |
Copyright © 2015. All Rights Reserved.