public class CommonPerson extends Object
| Constructor and Description |
|---|
CommonPerson() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object o) |
String |
getFirstName()
For people with single names this field need not be present.
|
String |
getLastName()
For people with single names the single name should be in this field
|
java.time.OffsetDateTime |
getLastUpdateTime()
The date and time that this record was last updated by the customer.
|
List<String> |
getMiddleNames()
Field is mandatory but array may be empty
|
String |
getOccupationCode()
Value is a valid [ANZCO v1.2](http://www.abs.gov.au/ANZSCO) Standard Occupation classification.
|
String |
getPrefix()
Also known as title or salutation.
|
String |
getSuffix()
Used for a trailing suffix to the name (e.g.
|
int |
hashCode() |
void |
setFirstName(String firstName) |
void |
setLastName(String lastName) |
void |
setLastUpdateTime(java.time.OffsetDateTime lastUpdateTime) |
void |
setMiddleNames(List<String> middleNames) |
void |
setOccupationCode(String occupationCode) |
void |
setPrefix(String prefix) |
void |
setSuffix(String suffix) |
String |
toString() |
public String getFirstName()
public void setFirstName(String firstName)
public String getLastName()
public void setLastName(String lastName)
public java.time.OffsetDateTime getLastUpdateTime()
public void setLastUpdateTime(java.time.OffsetDateTime lastUpdateTime)
public List<String> getMiddleNames()
public String getOccupationCode()
public void setOccupationCode(String occupationCode)
public String getPrefix()
public void setPrefix(String prefix)
public String getSuffix()
public void setSuffix(String suffix)
Copyright © 2019. All rights reserved.