Class AccountInviteAcceptanceNotification
- java.lang.Object
-
- com.broadleafcommerce.customer.service.domain.AccountInviteAcceptanceNotification
-
public class AccountInviteAcceptanceNotification extends Object
Represents an account invite to be sent to the notification service.
-
-
Constructor Summary
Constructors Constructor Description AccountInviteAcceptanceNotification()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)AccountgetAccount()The account related to the inviteMap<String,Object>getAdditionalArgs()Any additional arguments to pass along with the notification.com.broadleafcommerce.data.tracking.core.context.ContextInfogetContextInfo()The contextCustomergetCustomer()The targeted customerStringgetIdentifierType()The resolution identifier type.StringgetIdentifierValue()The identifier value.inthashCode()voidsetAccount(Account account)The account related to the invitevoidsetAdditionalArgs(Map<String,Object> additionalArgs)Any additional arguments to pass along with the notification.voidsetContextInfo(com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo)The contextvoidsetCustomer(Customer customer)The targeted customervoidsetIdentifierType(String identifierType)The resolution identifier type.voidsetIdentifierValue(String identifierValue)The identifier value.StringtoString()
-
-
-
Method Detail
-
getAccount
public Account getAccount()
The account related to the invite
-
getCustomer
public Customer getCustomer()
The targeted customer
-
getAdditionalArgs
public Map<String,Object> getAdditionalArgs()
Any additional arguments to pass along with the notification.
-
getIdentifierType
public String getIdentifierType()
The resolution identifier type. Either DOMAIN, DOMAIN_PREFIX, or PARAMETER. Combined withidentifierValue, can be used to determine the storefront URL. SeeApplication.getIdentifierType()
-
getIdentifierValue
public String getIdentifierValue()
The identifier value. Combined withidentifierType, can be used to determine the storefront URL. SeeApplication.getIdentifierValue()
-
getContextInfo
public com.broadleafcommerce.data.tracking.core.context.ContextInfo getContextInfo()
The context
-
setAccount
public void setAccount(Account account)
The account related to the invite
-
setCustomer
public void setCustomer(Customer customer)
The targeted customer
-
setAdditionalArgs
public void setAdditionalArgs(Map<String,Object> additionalArgs)
Any additional arguments to pass along with the notification.
-
setIdentifierType
public void setIdentifierType(String identifierType)
The resolution identifier type. Either DOMAIN, DOMAIN_PREFIX, or PARAMETER. Combined withidentifierValue, can be used to determine the storefront URL. SeeApplication.getIdentifierType()
-
setIdentifierValue
public void setIdentifierValue(String identifierValue)
The identifier value. Combined withidentifierType, can be used to determine the storefront URL. SeeApplication.getIdentifierValue()
-
setContextInfo
public void setContextInfo(com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo)
The context
-
canEqual
protected boolean canEqual(Object other)
-
-