Uses of Class
ejava.examples.txhotel.bo.Reservation
-
Packages that use Reservation Package Description ejava.examples.txagent.bo ejava.examples.txhotel.bl ejava.examples.txhotel.blimpl ejava.examples.txhotel.dao ejava.examples.txhotel.ejb ejava.examples.txhotel.jpa -
-
Uses of Reservation in ejava.examples.txagent.bo
Fields in ejava.examples.txagent.bo with type parameters of type Reservation Modifier and Type Field Description private Set<Reservation>
Booking. hotelReservations
Methods in ejava.examples.txagent.bo that return types with arguments of type Reservation Modifier and Type Method Description Set<Reservation>
Booking. getHotelReservations()
Methods in ejava.examples.txagent.bo with parameters of type Reservation Modifier and Type Method Description void
Booking. addHotelReservation(Reservation reservation)
Method parameters in ejava.examples.txagent.bo with type arguments of type Reservation Modifier and Type Method Description private void
Booking. setHotelReservations(Set<Reservation> hotelReservations)
-
Uses of Reservation in ejava.examples.txhotel.bl
Methods in ejava.examples.txhotel.bl that return Reservation Modifier and Type Method Description Reservation
HotelReservationist. commitReservation(Reservation reservation)
Reservation
HotelReservationist. createReservation(Person person, Date startDate, Date endDate)
Reservation
HotelReservationist. getReservationByConfirmation(String confirmation)
Methods in ejava.examples.txhotel.bl that return types with arguments of type Reservation Modifier and Type Method Description List<Reservation>
HotelReservationSession. commit()
List<Reservation>
HotelReservationist. getReservations(int index, int count)
List<Reservation>
HotelReservationist. getReservationsForPerson(Person person, int index, int count)
Methods in ejava.examples.txhotel.bl with parameters of type Reservation Modifier and Type Method Description void
HotelReservationist. cancelReservation(Reservation reservation)
Reservation
HotelReservationist. commitReservation(Reservation reservation)
-
Uses of Reservation in ejava.examples.txhotel.blimpl
Fields in ejava.examples.txhotel.blimpl with type parameters of type Reservation Modifier and Type Field Description private List<Reservation>
HotelReservationSessionImpl. pending
Methods in ejava.examples.txhotel.blimpl that return Reservation Modifier and Type Method Description Reservation
HotelReservationImpl. commitReservation(Reservation reservation)
Reservation
HotelReservationImpl. createReservation(Person person, Date startDate, Date endDate)
protected Reservation
HotelReservationImpl. getReservation(String confirmation)
Reservation
HotelReservationImpl. getReservationByConfirmation(String confirmation)
Methods in ejava.examples.txhotel.blimpl that return types with arguments of type Reservation Modifier and Type Method Description List<Reservation>
HotelReservationSessionImpl. commit()
List<Reservation>
HotelReservationImpl. getReservations(int index, int count)
List<Reservation>
HotelReservationImpl. getReservationsForPerson(Person person, int index, int count)
Methods in ejava.examples.txhotel.blimpl with parameters of type Reservation Modifier and Type Method Description void
HotelReservationImpl. cancelReservation(Reservation reservation)
Reservation
HotelReservationImpl. commitReservation(Reservation reservation)
-
Uses of Reservation in ejava.examples.txhotel.dao
Methods in ejava.examples.txhotel.dao that return Reservation Modifier and Type Method Description Reservation
ReservationDAO. createReservation(Reservation reservation)
Reservation
ReservationDAO. getReservation(long id)
Reservation
ReservationDAO. getReservationByConfirmation(String confirmation)
Reservation
ReservationDAO. removeReservation(Reservation reservation)
Reservation
ReservationDAO. updateReservation(Reservation reservation)
Methods in ejava.examples.txhotel.dao that return types with arguments of type Reservation Modifier and Type Method Description List<Reservation>
ReservationDAO. getReservations(int index, int count)
List<Reservation>
ReservationDAO. getReservations(String queryName, Map<String,Object> params, int index, int count)
Methods in ejava.examples.txhotel.dao with parameters of type Reservation Modifier and Type Method Description Reservation
ReservationDAO. createReservation(Reservation reservation)
Reservation
ReservationDAO. removeReservation(Reservation reservation)
Reservation
ReservationDAO. updateReservation(Reservation reservation)
-
Uses of Reservation in ejava.examples.txhotel.ejb
Methods in ejava.examples.txhotel.ejb that return Reservation Modifier and Type Method Description Reservation
HotelRegistrationEJB. commitReservation(Reservation reservation)
This method is just a pass-thru to the business logic.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.Reservation
HotelRegistrationEJB. getReservationByConfirmation(String confirmation)
Methods in ejava.examples.txhotel.ejb that return types with arguments of type Reservation Modifier and Type Method Description List<Reservation>
HotelReservationSessionEJB. commit()
List<Reservation>
HotelRegistrationEJB. getReservations(int index, int count)
List<Reservation>
HotelRegistrationEJB. getReservationsForPerson(Person person, int index, int count)
Methods in ejava.examples.txhotel.ejb with parameters of type Reservation Modifier and Type Method Description void
HotelRegistrationEJB. cancelReservation(Reservation reservation)
This method will cause the current transaction to be rolled back if the business logic reports an exception cancelling a reservation.Reservation
HotelRegistrationEJB. commitReservation(Reservation reservation)
This method is just a pass-thru to the business logic. -
Uses of Reservation in ejava.examples.txhotel.jpa
Methods in ejava.examples.txhotel.jpa that return Reservation Modifier and Type Method Description Reservation
JPAReservationDAO. createReservation(Reservation reservation)
Reservation
JPAReservationDAO. getReservation(long id)
Reservation
JPAReservationDAO. getReservationByConfirmation(String confirmation)
Reservation
JPAReservationDAO. removeReservation(Reservation reservation)
Reservation
JPAReservationDAO. updateReservation(Reservation reservation)
Methods in ejava.examples.txhotel.jpa that return types with arguments of type Reservation Modifier and Type Method Description List<Reservation>
JPAReservationDAO. getReservations(int index, int count)
List<Reservation>
JPAReservationDAO. getReservations(String queryName, Map<String,Object> params, int index, int count)
Methods in ejava.examples.txhotel.jpa with parameters of type Reservation Modifier and Type Method Description Reservation
JPAReservationDAO. createReservation(Reservation reservation)
Reservation
JPAReservationDAO. removeReservation(Reservation reservation)
Reservation
JPAReservationDAO. updateReservation(Reservation reservation)
-