Uses of Class
ejava.examples.txhotel.bo.Person
-
-
Uses of Person in ejava.examples.txagent.bl
Methods in ejava.examples.txagent.bl with parameters of type Person Modifier and Type Method Description void
AgentReservationSession. addReservation(Person person, Date startDate, Date endDate)
-
Uses of Person in ejava.examples.txagent.blimpl
Methods in ejava.examples.txagent.blimpl with parameters of type Person Modifier and Type Method Description void
AgentSessionImpl. addReservation(Person person, Date startDate, Date endDate)
-
Uses of Person in ejava.examples.txagent.ejb
Methods in ejava.examples.txagent.ejb with parameters of type Person Modifier and Type Method Description void
AgentReservationSessionEJB. addReservation(Person person, Date startDate, Date endDate)
-
Uses of Person in ejava.examples.txhotel.bl
Methods in ejava.examples.txhotel.bl with parameters of type Person Modifier and Type Method Description Reservation
HotelReservationist. createReservation(Person person, Date startDate, Date endDate)
void
HotelReservationSession. createReservation(Person person, Date startDate, Date endDate)
List<Reservation>
HotelReservationist. getReservationsForPerson(Person person, int index, int count)
-
Uses of Person in ejava.examples.txhotel.blimpl
Methods in ejava.examples.txhotel.blimpl with parameters of type Person Modifier and Type Method Description Reservation
HotelReservationImpl. createReservation(Person person, Date startDate, Date endDate)
void
HotelReservationSessionImpl. createReservation(Person person, Date startDate, Date endDate)
List<Reservation>
HotelReservationImpl. getReservationsForPerson(Person person, int index, int count)
-
Uses of Person in ejava.examples.txhotel.bo
Fields in ejava.examples.txhotel.bo declared as Person Modifier and Type Field Description private Person
Reservation. person
Methods in ejava.examples.txhotel.bo that return Person Modifier and Type Method Description Person
Reservation. getPerson()
Methods in ejava.examples.txhotel.bo with parameters of type Person Modifier and Type Method Description void
Reservation. setPerson(Person person)
Constructors in ejava.examples.txhotel.bo with parameters of type Person Constructor Description Reservation(long id, long version, String confirmation, Person person, Date startDate, Date endDate)
-
Uses of Person in ejava.examples.txhotel.ejb
Methods in ejava.examples.txhotel.ejb with parameters of type Person Modifier and Type Method Description Reservation
HotelRegistrationEJB. createReservation(Person person, Date startDate, Date endDate)
This method will rollack the current transaction if the business logic throws an exception while trying to create a reservation.void
HotelReservationSessionEJB. createReservation(Person person, Date startDate, Date endDate)
List<Reservation>
HotelRegistrationEJB. getReservationsForPerson(Person person, int index, int count)
-