Class Person
- java.lang.Object
-
- org.hibernate.testing.orm.domain.userguide.Person
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddPhone(Phone phone)StringgetAddress()Map<AddressType,String>getAddresses()LocalDateTimegetCreatedOn()LonggetId()StringgetName()StringgetNickName()List<Phone>getPhones()voidsetAddress(String address)voidsetCreatedOn(LocalDateTime createdOn)voidsetNickName(String nickName)
-
-
-
Constructor Detail
-
Person
public Person()
-
Person
public Person(String name)
-
-
Method Detail
-
getId
public Long getId()
-
getName
public String getName()
-
getNickName
public String getNickName()
-
setNickName
public void setNickName(String nickName)
-
getAddress
public String getAddress()
-
setAddress
public void setAddress(String address)
-
getCreatedOn
public LocalDateTime getCreatedOn()
-
setCreatedOn
public void setCreatedOn(LocalDateTime createdOn)
-
getAddresses
public Map<AddressType,String> getAddresses()
-
addPhone
public void addPhone(Phone phone)
-
-