Class UpdateAccountMemberRequest
- java.lang.Object
-
- com.broadleafcommerce.customer.web.endpoint.domain.UpdateAccountMemberRequest
-
- All Implemented Interfaces:
Serializable
public class UpdateAccountMemberRequest extends Object implements Serializable
Used to describe an update that should be made to anAccountMember- Author:
- Chris Kittrell (ckittrell)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UpdateAccountMemberRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)Set<String>getAccountRoleIds()The roles assigned to thisAccountMember.List<AdditionalPhone>getAdditionalPhones()Deprecated.Use the customer's phone numbers insteadMap<String,Object>getAttributes()Additional attributes that are used to describe the account memberStringgetEmail()Deprecated.We use the customer's email instead.PhonegetPhone()Deprecated.Use the customer's phone numbers insteadinthashCode()voidsetAccountRoleIds(Set<String> accountRoleIds)The roles assigned to thisAccountMember.voidsetAdditionalPhones(List<AdditionalPhone> additionalPhones)Deprecated.Use the customer's phone numbers insteadvoidsetAttributes(Map<String,Object> attributes)Additional attributes that are used to describe the account membervoidsetEmail(String email)Deprecated.We use the customer's email instead.voidsetPhone(Phone phone)Deprecated.Use the customer's phone numbers insteadStringtoString()
-
-
-
Method Detail
-
getAccountRoleIds
public Set<String> getAccountRoleIds()
The roles assigned to thisAccountMember.- Returns:
- The roles assigned to this account member.
-
getEmail
@Deprecated public String getEmail()
Deprecated.We use the customer's email instead.An updated email address for the account member.- Returns:
- an updated email address for the account member
-
getPhone
@Deprecated public Phone getPhone()
Deprecated.Use the customer's phone numbers insteadAn updated primary phone number of the account member.- Returns:
- an updated primary phone number of the account member
-
getAdditionalPhones
@Deprecated public List<AdditionalPhone> getAdditionalPhones()
Deprecated.Use the customer's phone numbers insteadAdditional phone numbers associated with the account member.- Returns:
- additional phone numbers associated with the account member
-
getAttributes
public Map<String,Object> getAttributes()
Additional attributes that are used to describe the account member- Returns:
- additional attributes that are used to describe the account member
-
setAccountRoleIds
public void setAccountRoleIds(Set<String> accountRoleIds)
The roles assigned to thisAccountMember.- Parameters:
accountRoleIds- The roles assigned to this account member.
-
setEmail
@Deprecated public void setEmail(String email)
Deprecated.We use the customer's email instead.An updated email address for the account member.- Parameters:
email- an updated email address for the account member
-
setPhone
@Deprecated public void setPhone(Phone phone)
Deprecated.Use the customer's phone numbers insteadAn updated primary phone number of the account member.- Parameters:
phone- an updated primary phone number of the account member
-
setAdditionalPhones
@Deprecated public void setAdditionalPhones(List<AdditionalPhone> additionalPhones)
Deprecated.Use the customer's phone numbers insteadAdditional phone numbers associated with the account member.- Parameters:
additionalPhones- additional phone numbers associated with the account member
-
setAttributes
public void setAttributes(Map<String,Object> attributes)
Additional attributes that are used to describe the account member- Parameters:
attributes- additional attributes that are used to describe the account member
-
canEqual
protected boolean canEqual(Object other)
-
-