Package com.example.helloworld.core
Class Person
- java.lang.Object
-
- com.example.helloworld.core.Person
-
@Entity public class Person extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetFullName()longgetId()StringgetJobTitle()intgetYearBorn()inthashCode()voidsetFullName(String fullName)voidsetId(long id)voidsetJobTitle(String jobTitle)voidsetYearBorn(int yearBorn)
-
-
-
Method Detail
-
getId
public long getId()
-
setId
public void setId(long id)
-
getFullName
public String getFullName()
-
setFullName
public void setFullName(String fullName)
-
getJobTitle
public String getJobTitle()
-
setJobTitle
public void setJobTitle(String jobTitle)
-
getYearBorn
public int getYearBorn()
-
setYearBorn
public void setYearBorn(int yearBorn)
-
-