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 boolean
canEqual(Object other)
boolean
equals(Object o)
Set<String>
getAccountRoleIds()
The roles to be assigned to the user upon accepting the invitation.String
getEmail()
The e-mail address of the user being invited to the account.Phone
getPhone()
The phone number of the user being invited to the account.int
hashCode()
void
setAccountRoleIds(Set<String> accountRoleIds)
The roles to be assigned to the user upon accepting the invitation.void
setEmail(String email)
The e-mail address of the user being invited to the account.void
setPhone(Phone phone)
The phone number of the user being invited to the account.String
toString()
-
-
-
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)
-
-