Class AccountInviteRequest
- java.lang.Object
-
- com.broadleafcommerce.customer.domain.AccountInviteRequest
-
public class AccountInviteRequest extends Object
An account invite request. Used when inviting a member to an account via an HTTP request.
-
-
Constructor Summary
Constructors Constructor Description AccountInviteRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)Set<String>getAccountRoleIds()The roles to be assigned to the user upon accepting the invitation.StringgetEmail()The e-mail address of the user being invited to the account.PhonegetPhone()The phone number of the user being invited to the account.inthashCode()voidsetAccountRoleIds(Set<String> accountRoleIds)The roles to be assigned to the user upon accepting the invitation.voidsetEmail(String email)The e-mail address of the user being invited to the account.voidsetPhone(Phone phone)The phone number of the user being invited to the account.StringtoString()
-
-
-
Method Detail
-
getEmail
public String getEmail()
The e-mail address of the user being invited to the account.
-
getPhone
public Phone getPhone()
The phone number of the user being invited to the account.
-
getAccountRoleIds
public Set<String> getAccountRoleIds()
The roles to be assigned to the user upon accepting the invitation.
-
setEmail
public void setEmail(String email)
The e-mail address of the user being invited to the account.
-
setPhone
public void setPhone(Phone phone)
The phone number of the user being invited to the account.
-
setAccountRoleIds
public void setAccountRoleIds(Set<String> accountRoleIds)
The roles to be assigned to the user upon accepting the invitation.
-
canEqual
protected boolean canEqual(Object other)
-
-