Class CustomerRef
- java.lang.Object
-
- com.broadleafcommerce.order.common.domain.CustomerRef
-
- All Implemented Interfaces:
Serializable
public class CustomerRef extends Object implements Serializable
A reference to a customer.- Author:
- Chad Harchar (charchar)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CustomerRef()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)StringgetAccountId()The ID of the account the customer belongs to.StringgetCustomerId()The customer's id.StringgetFullName()The customer's full name, if available.StringgetUsername()The customer's username.inthashCode()booleanisRegistered()Defines whether or not the customer is registered.voidsetAccountId(String accountId)The ID of the account the customer belongs to.voidsetCustomerId(String customerId)The customer's id.voidsetFullName(String fullName)The customer's full name, if available.voidsetRegistered(boolean isRegistered)Defines whether or not the customer is registered.voidsetUsername(String username)The customer's username.StringtoString()
-
-
-
Method Detail
-
getCustomerId
public String getCustomerId()
The customer's id.- Returns:
- The customer's id.
-
getUsername
public String getUsername()
The customer's username.- Returns:
- The customer's username.
-
getFullName
public String getFullName()
The customer's full name, if available.- Returns:
- The customer's full name, if available.
-
isRegistered
public boolean isRegistered()
Defines whether or not the customer is registered. If false, then the customer is considered anonymous.- Returns:
- Whether or not the customer is registered.
-
getAccountId
public String getAccountId()
The ID of the account the customer belongs to.- Returns:
- the ID of the account of the customer
-
setCustomerId
public void setCustomerId(String customerId)
The customer's id.- Parameters:
customerId- The customer's id.
-
setUsername
public void setUsername(String username)
The customer's username.- Parameters:
username- The customer's username.
-
setFullName
public void setFullName(String fullName)
The customer's full name, if available.- Parameters:
fullName- The customer's full name.
-
setRegistered
public void setRegistered(boolean isRegistered)
Defines whether or not the customer is registered. If false, then the customer is considered anonymous.- Parameters:
isRegistered- Whether or not the customer is registered.
-
setAccountId
public void setAccountId(String accountId)
The ID of the account the customer belongs to.- Parameters:
accountId- the ID of the account of the customer
-
canEqual
protected boolean canEqual(Object other)
-
-