Uses of Class
io.github.marcopaglio.booking.exception.InstanceNotFoundException
Packages that use InstanceNotFoundException
Package
Description
Provides interfaces for facing the service layer of the booking application.
Contains transactional implementations of the service layer for the booking application.
-
Uses of InstanceNotFoundException in io.github.marcopaglio.booking.service
Methods in io.github.marcopaglio.booking.service that throw InstanceNotFoundExceptionModifier and TypeMethodDescriptionBookingService.findClient
(UUID id) Retrieves the client with the specified id from the database.BookingService.findClientNamed
(String firstName, String lastName) Retrieves the client with specified name and surname from the database.BookingService.findReservation
(UUID id) Retrieves the reservation with the specified id from the database.BookingService.findReservationOn
(LocalDate date) Retrieves the reservation of the specified date from the database.BookingService.insertNewReservation
(Reservation reservation) Adds a new reservation in the database.void
BookingService.removeClient
(UUID id) Deletes the client with the specified id and all his reservation from the database.void
BookingService.removeClientNamed
(String firstName, String lastName) Deletes the client with specified name and surname and all his reservation from the database.void
BookingService.removeReservation
(UUID id) Deletes the reservation with the specified id from the database.void
BookingService.removeReservationOn
(LocalDate date) Deletes the reservation on the specified date from the database.BookingService.renameClient
(UUID id, String newFirstName, String newLastName) Changes name and surname of the client with the specified id in the database.BookingService.rescheduleReservation
(UUID id, LocalDate newDate) Changes date of the reservation with the specified id in the database. -
Uses of InstanceNotFoundException in io.github.marcopaglio.booking.service.transactional
Methods in io.github.marcopaglio.booking.service.transactional that throw InstanceNotFoundExceptionModifier and TypeMethodDescriptionTransactionalBookingService.findClient
(UUID id) Retrieves the client with the specified id from the database within a transaction.TransactionalBookingService.findClientNamed
(String firstName, String lastName) Retrieves the client with specified name and surname from the database within a transaction.TransactionalBookingService.findReservation
(UUID id) Retrieves the reservation with the specified id from the database within a transaction.TransactionalBookingService.findReservationOn
(LocalDate date) Retrieves the reservation of the specified date from the database within a transaction.TransactionalBookingService.insertNewReservation
(Reservation reservation) Adds a new reservation in the database within a transaction.void
TransactionalBookingService.removeClient
(UUID id) Deletes the client with the specified id and all his reservation from the database within a transaction.void
TransactionalBookingService.removeClientNamed
(String firstName, String lastName) Deletes the client with specified name and surname and all his reservation from the database within a transaction.void
TransactionalBookingService.removeReservation
(UUID id) Deletes the reservation with the specified id from the database within a transaction.void
TransactionalBookingService.removeReservationOn
(LocalDate date) Deletes the reservation of the specified date from the database within a transaction.TransactionalBookingService.renameClient
(UUID id, String newFirstName, String newLastName) Changes name and surname of the client with the specified id in the database within a transaction.TransactionalBookingService.rescheduleReservation
(UUID id, LocalDate newDate) Changes date of the reservation with the specified id in the database within a transaction.