| Modifier and Type | Method and Description |
|---|---|
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.readCustomerByExternalId(String externalId) |
Customer |
CustomerDaoImpl.readCustomerByExternalId(String externalId) |
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, with caching defaulted.
|
Customer |
CustomerDaoImpl.readCustomerByUsername(String username) |
Customer |
CustomerDao.readCustomerByUsername(String username,
Boolean cacheable)
Returns the first customer that match the passed in username, and caches according to
cacheable.
|
Customer |
CustomerDaoImpl.readCustomerByUsername(String username,
Boolean cacheable) |
Customer |
CustomerDao.save(Customer customer) |
Customer |
CustomerDaoImpl.save(Customer customer) |
| Modifier and Type | Method and Description |
|---|---|
List<Customer> |
CustomerDao.readBatchCustomers(int start,
int pageSize)
Reads a batch list of customers from the DB.
|
List<Customer> |
CustomerDaoImpl.readBatchCustomers(int start,
int pageSize) |
List<Customer> |
CustomerDao.readBatchCustomersFromLastID(Long lastID,
int pageSize)
Reads a batch of customer using ID as a starting point
|
List<Customer> |
CustomerDaoImpl.readBatchCustomersFromLastID(Long lastID,
int pageSize) |
List<Customer> |
CustomerDao.readCustomersByEmail(String emailAddress)
Returns all customers that matches the passed in email.
|
List<Customer> |
CustomerDaoImpl.readCustomersByEmail(String emailAddress) |
List<Customer> |
CustomerDao.readCustomersByIds(List<Long> ids) |
List<Customer> |
CustomerDaoImpl.readCustomersByIds(List<Long> ids) |
List<Customer> |
CustomerDao.readCustomersByUsername(String username)
Returns all customers that match the passed in username, with caching defaulted.
|
List<Customer> |
CustomerDaoImpl.readCustomersByUsername(String username) |
List<Customer> |
CustomerDao.readCustomersByUsername(String username,
Boolean cacheable)
Returns all customers that match the passed in username, and caches according to
cacheable.
|
List<Customer> |
CustomerDaoImpl.readCustomersByUsername(String username,
Boolean cacheable) |
| Modifier and Type | Method and Description |
|---|---|
void |
CustomerDao.delete(Customer customer)
Remove a customer from the persistent store
|
void |
CustomerDaoImpl.delete(Customer customer) |
void |
CustomerDao.detach(Customer customer)
Detaches the given Customer instance from the entity manager.
|
void |
CustomerDaoImpl.detach(Customer customer) |
void |
CustomerDao.refreshCustomer(Customer customer) |
void |
CustomerDaoImpl.refreshCustomer(Customer customer) |
Customer |
CustomerDao.save(Customer customer) |
Customer |
CustomerDaoImpl.save(Customer customer) |
| Modifier and Type | Class and Description |
|---|---|
class |
CustomerImpl |
| Modifier and Type | Field and Description |
|---|---|
protected Customer |
CustomerPaymentImpl.customer |
protected Customer |
CustomerAddressImpl.customer |
protected Customer |
CustomerPhoneImpl.customer |
protected Customer |
CustomerRoleImpl.customer |
protected Customer |
CustomerAttributeImpl.customer
The customer.
|
| Modifier and Type | Method and Description |
|---|---|
<G extends Customer> |
CustomerImpl.createOrRetrieveCopyInstance(MultiTenantCopyContext context) |
| Modifier and Type | Method and Description |
|---|---|
Customer |
CustomerPaymentImpl.getCustomer() |
Customer |
CustomerAttribute.getCustomer()
Gets the associated customer.
|
Customer |
CustomerAddressImpl.getCustomer() |
Customer |
CustomerPersistedEvent.getCustomer()
Gets the newly-persisted
Customer set by the CustomerPersistedEntityListener |
Customer |
CustomerRole.getCustomer() |
Customer |
CustomerPhoneImpl.getCustomer() |
Customer |
CustomerRoleImpl.getCustomer() |
Customer |
CustomerAddress.getCustomer() |
Customer |
CustomerPayment.getCustomer() |
Customer |
CustomerPhone.getCustomer() |
Customer |
CustomerAttributeImpl.getCustomer() |
| Modifier and Type | Method and Description |
|---|---|
void |
CustomerPaymentImpl.setCustomer(Customer customer) |
void |
CustomerAttribute.setCustomer(Customer customer)
Sets the associated customer.
|
void |
CustomerAddressImpl.setCustomer(Customer customer) |
void |
CustomerRole.setCustomer(Customer customer) |
void |
CustomerPhoneImpl.setCustomer(Customer customer) |
void |
CustomerRoleImpl.setCustomer(Customer customer) |
void |
CustomerAddress.setCustomer(Customer customer) |
void |
CustomerPayment.setCustomer(Customer customer) |
void |
CustomerPhone.setCustomer(Customer customer) |
void |
CustomerAttributeImpl.setCustomer(Customer customer) |
| Constructor and Description |
|---|
CustomerPersistedEvent(Customer customer) |
| Modifier and Type | Method and Description |
|---|---|
protected Map<String,Object> |
NotificationForgotPasswordEventListener.createContext(Customer customer,
ForgotPasswordEvent event) |
protected Map<String,Object> |
NotificationRegisterCustomerEventListener.createContext(Customer customer,
RegisterCustomerEvent event) |
| Modifier and Type | Method and Description |
|---|---|
ExtensionResultStatusType |
PostUpdateCustomerExtensionHandler.postUpdate(Customer customer) |
ExtensionResultStatusType |
AbstractPostUpdateCustomerExtensionHandler.postUpdate(Customer customer) |
| Modifier and Type | Method and Description |
|---|---|
ExtensionResultStatusType |
PostUpdateCustomerExtensionHandler.postUpdateAll(List<Customer> customers) |
ExtensionResultStatusType |
AbstractPostUpdateCustomerExtensionHandler.postUpdateAll(List<Customer> customers) |
| 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.createCustomerWithNullId()
Returns a non-persisted
Customer with a null id. |
Customer |
CustomerServiceImpl.createCustomerWithNullId() |
Customer |
CustomerService.createNewCustomer()
Deprecated.
|
Customer |
CustomerServiceImpl.createNewCustomer()
Deprecated.
|
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.readCustomerByExternalId(String userExternalId) |
Customer |
CustomerServiceImpl.readCustomerByExternalId(String userExternalId) |
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 |
|---|---|
List<Customer> |
CustomerService.readBatchCustomers(int start,
int pageSize) |
List<Customer> |
CustomerServiceImpl.readBatchCustomers(int start,
int pageSize) |
| Modifier and Type | Method and Description |
|---|---|
protected Map<String,Object> |
CustomerServiceImpl.buildCustomerRuleParams(Customer customer) |
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 |
CustomerPaymentService.clearDefaultPaymentStatus(Customer customer) |
void |
CustomerPaymentServiceImpl.clearDefaultPaymentStatus(Customer customer) |
void |
CustomerService.createRegisteredCustomerRoles(Customer customer)
Subclassed implementations can assign unique roles for various customer types
|
void |
CustomerServiceImpl.createRegisteredCustomerRoles(Customer customer) |
boolean |
CustomerService.customerPassesCustomerRule(Customer customer,
CustomerRuleHolder customerRuleHolder)
Determines if the given customer passes the MVEL customer rule
|
boolean |
CustomerServiceImpl.customerPassesCustomerRule(Customer customer,
CustomerRuleHolder customerRuleHolder) |
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) |
void |
CustomerService.detachCustomer(Customer customer)
Detaches the given Customer instance from the entity manager.
|
void |
CustomerServiceImpl.detachCustomer(Customer customer) |
CustomerPayment |
CustomerPaymentService.findDefaultPaymentForCustomer(Customer customer) |
CustomerPayment |
CustomerPaymentServiceImpl.findDefaultPaymentForCustomer(Customer customer) |
protected void |
CustomerServiceImpl.invalidateAllTokensForCustomer(Customer 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 |
PasswordUpdatedHandler.passwordChanged(PasswordReset passwordReset,
Customer customer,
String newPassword) |
void |
EmailNotificationPasswordUpdatedHandler.passwordChanged(PasswordReset passwordReset,
Customer customer,
String newPassword)
Deprecated.
|
| 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 © 2023. All rights reserved.