Uses of Class
ejava.examples.asyncmarket.bo.Person
-
Packages that use Person Package Description ejava.examples.asyncmarket ejava.examples.asyncmarket.bo ejava.examples.asyncmarket.dao ejava.examples.asyncmarket.ejb ejava.examples.asyncmarket.jpa -
-
Uses of Person in ejava.examples.asyncmarket
Methods in ejava.examples.asyncmarket that return Person Modifier and Type Method Description Person
UserMgmt. getUser(long id)
Person
UserMgmt. getUserByUserId(String userId)
Methods in ejava.examples.asyncmarket that return types with arguments of type Person Modifier and Type Method Description List<Person>
UserMgmt. getUsers(int index, int count)
-
Uses of Person in ejava.examples.asyncmarket.bo
Fields in ejava.examples.asyncmarket.bo declared as Person Modifier and Type Field Description private Person
Bid. bidder
private Person
Order. buyer
private Person
AuctionItem. owner
Methods in ejava.examples.asyncmarket.bo that return Person Modifier and Type Method Description Person
Bid. getBidder()
Person
Order. getBuyer()
Person
AuctionItem. getOwner()
Methods in ejava.examples.asyncmarket.bo with parameters of type Person Modifier and Type Method Description void
Bid. setBidder(Person bidder)
void
Order. setBuyer(Person buyer)
void
AuctionItem. setOwner(Person owner)
-
Uses of Person in ejava.examples.asyncmarket.dao
Methods in ejava.examples.asyncmarket.dao that return Person Modifier and Type Method Description Person
PersonDAO. createPerson(Person person)
Person
PersonDAO. getPerson(long personId)
Person
PersonDAO. getPersonByUserId(String userId)
Methods in ejava.examples.asyncmarket.dao that return types with arguments of type Person Modifier and Type Method Description List<Person>
PersonDAO. getPeople(int index, int count)
List<Person>
PersonDAO. getPeople(String queryString, Map<String,Object> params, int index, int count)
Methods in ejava.examples.asyncmarket.dao with parameters of type Person Modifier and Type Method Description Person
PersonDAO. createPerson(Person person)
void
PersonDAO. removePerson(Person person)
-
Uses of Person in ejava.examples.asyncmarket.ejb
Methods in ejava.examples.asyncmarket.ejb that return Person Modifier and Type Method Description Person
UserMgmtEJB. getUser(long id)
Person
UserMgmtEJB. getUserByUserId(String userId)
Person
DtoMapper. toDTO(Person user)
Person
DtoMapper. toDTO(Person owner, AuctionItem item)
Person
DtoMapper. toDTO(Person person, Bid bid)
Person
DtoMapper. toDTO(Person buyer, Order order)
Methods in ejava.examples.asyncmarket.ejb that return types with arguments of type Person Modifier and Type Method Description List<Person>
UserMgmtEJB. getUsers(int index, int count)
List<Person>
DtoMapper. toDTOPeople(List<Person> people)
Methods in ejava.examples.asyncmarket.ejb with parameters of type Person Modifier and Type Method Description Person
DtoMapper. toDTO(Person user)
Person
DtoMapper. toDTO(Person owner, AuctionItem item)
Person
DtoMapper. toDTO(Person person, Bid bid)
Person
DtoMapper. toDTO(Person buyer, Order order)
Collection<AuctionItem>
DtoMapper. toDTO(Collection<AuctionItem> items, Person owner)
Method parameters in ejava.examples.asyncmarket.ejb with type arguments of type Person Modifier and Type Method Description List<Person>
DtoMapper. toDTOPeople(List<Person> people)
-
Uses of Person in ejava.examples.asyncmarket.jpa
Methods in ejava.examples.asyncmarket.jpa that return Person Modifier and Type Method Description Person
JPAPersonDAO. createPerson(Person person)
Person
JPAPersonDAO. getPerson(long personId)
Person
JPAPersonDAO. getPersonByUserId(String userId)
Methods in ejava.examples.asyncmarket.jpa that return types with arguments of type Person Modifier and Type Method Description List<Person>
JPAPersonDAO. getPeople(int index, int count)
List<Person>
JPAPersonDAO. getPeople(String queryString, Map<String,Object> params, int index, int count)
Methods in ejava.examples.asyncmarket.jpa with parameters of type Person Modifier and Type Method Description Person
JPAPersonDAO. createPerson(Person person)
void
JPAPersonDAO. removePerson(Person person)
-