| 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, with caching defaulted.
|
Customer |
CustomerDaoImpl.readCustomerByUsername(String username,
Boolean cacheable) |
Customer |
CustomerDao.readCustomerByUsername(String username,
Boolean cacheable)
Returns the first customer that match the passed in username, and caches according to
cacheable.
|
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, with caching defaulted.
|
List<Customer> |
CustomerDaoImpl.readCustomersByUsername(String username,
Boolean cacheable) |
List<Customer> |
CustomerDao.readCustomersByUsername(String username,
Boolean cacheable)
Returns all customers that match the passed in username, and caches according to
cacheable.
|
| Modifier and Type | Method and Description |
|---|---|
void |
CustomerDaoImpl.delete(Customer customer) |
void |
CustomerDao.delete(Customer customer)
Remove a customer from the persistent store
|
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 |
|---|---|
<G extends Customer> |
CustomerImpl.createOrRetrieveCopyInstance(MultiTenantCopyContext context) |
| 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 |
CustomerPersistedEvent.getCustomer()
Gets the newly-persisted
Customer set by the CustomerPersistedEntityListener |
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) |
| Constructor and Description |
|---|
CustomerPersistedEvent(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)
|
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.readCustomerByUsername(String username,
Boolean cacheable) |
Customer |
CustomerServiceImpl.readCustomerByUsername(String username,
Boolean cacheable) |
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) |
GenericResponse |
CustomerService.checkPasswordResetToken(String token,
Customer customer)
Verifies that a customer has a valid token.
|
GenericResponse |
CustomerServiceImpl.checkPasswordResetToken(String token,
Customer customer) |
protected CustomerForgotPasswordSecurityToken |
CustomerServiceImpl.checkPasswordResetToken(String token,
Customer customer,
GenericResponse response) |
void |
CustomerService.createRegisteredCustomerRoles(Customer customer)
Subclassed implementations can assign unique roles for various customer types
|
void |
CustomerServiceImpl.createRegisteredCustomerRoles(Customer customer) |
void |
CustomerService.deleteCustomer(Customer customer)
Delete the customer entity from the persistent store
|
void |
CustomerServiceImpl.deleteCustomer(Customer customer) |
Customer |
CustomerPaymentService.deleteCustomerPaymentFromCustomer(Customer customer,
CustomerPayment payment) |
Customer |
CustomerPaymentServiceImpl.deleteCustomerPaymentFromCustomer(Customer customer,
CustomerPayment payment) |
String |
CustomerService.encodePassword(String rawPassword,
Customer customer)
Deprecated.
the new
PasswordEncoder handles salting internally, this will be removed in 4.2 |
String |
CustomerServiceImpl.encodePassword(String rawPassword,
Customer customer)
Deprecated.
|
CustomerPayment |
CustomerPaymentService.findDefaultPaymentForCustomer(Customer customer) |
CustomerPayment |
CustomerPaymentServiceImpl.findDefaultPaymentForCustomer(Customer customer) |
Object |
CustomerService.getSalt(Customer customer)
Deprecated.
use
CustomerService.getSalt(Customer, String) instead, this will be removed in 4.2 |
Object |
CustomerServiceImpl.getSalt(Customer customer)
Deprecated.
|
Object |
CustomerService.getSalt(Customer customer,
String unencodedPassword)
Deprecated.
the new
PasswordEncoder handles salting internally, this will be removed in 4.2 |
Object |
CustomerServiceImpl.getSalt(Customer customer,
String unencodedPassword)
Deprecated.
|
protected void |
CustomerServiceImpl.invalidateAllTokensForCustomer(Customer customer) |
boolean |
CustomerService.isPasswordValid(String rawPassword,
String encodedPassword,
Customer customer)
Deprecated.
the new
PasswordEncoder handles salting internally, this will be removed in 4.2 |
boolean |
CustomerServiceImpl.isPasswordValid(String rawPassword,
String encodedPassword,
Customer customer)
Deprecated.
|
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.