Uses of Class
com.example.helloworld.core.Person
-
Packages that use Person Package Description com.example.helloworld.db com.example.helloworld.resources com.example.helloworld.views -
-
Uses of Person in com.example.helloworld.db
Methods in com.example.helloworld.db that return Person Modifier and Type Method Description Person
PersonDAO. create(Person person)
Methods in com.example.helloworld.db that return types with arguments of type Person Modifier and Type Method Description List<Person>
PersonDAO. findAll()
Optional<Person>
PersonDAO. findById(Long id)
Methods in com.example.helloworld.db with parameters of type Person Modifier and Type Method Description Person
PersonDAO. create(Person person)
-
Uses of Person in com.example.helloworld.resources
Methods in com.example.helloworld.resources that return Person Modifier and Type Method Description Person
PeopleResource. createPerson(@Valid Person person)
Person
PersonResource. getPerson(OptionalLong personId)
Methods in com.example.helloworld.resources that return types with arguments of type Person Modifier and Type Method Description List<Person>
PeopleResource. listPeople()
Methods in com.example.helloworld.resources with parameters of type Person Modifier and Type Method Description Person
PeopleResource. createPerson(@Valid Person person)
-
Uses of Person in com.example.helloworld.views
Methods in com.example.helloworld.views that return Person Modifier and Type Method Description Person
PersonView. getPerson()
Constructors in com.example.helloworld.views with parameters of type Person Constructor Description PersonView(PersonView.Template template, Person person)
-