Uses of Class
io.github.marcopaglio.booking.model.Reservation
Packages that use Reservation
Package
Description
Provides interfaces for facing the presenter for the booking application.
Contains implementations of the presenter for the booking application using the service layer.
Provides interfaces for facing database level of any entity.
Contains implementations for using the repository layer through MongoDB
for entities of the booking application.
Contains implementations for using the repository layer through PostegreSQL
for entities of the booking application.
Provides interfaces for facing the service layer of the booking application.
Contains transactional implementations of the service layer for the booking application.
Provides the interface of a view of the user interface for the booking application.
Contains implementations of the view for the booking application using Swing.
-
Uses of Reservation in io.github.marcopaglio.booking.presenter
Methods in io.github.marcopaglio.booking.presenter with parameters of type ReservationModifier and TypeMethodDescriptionvoid
BookingPresenter.deleteReservation
(Reservation reservation) Removes an existing reservation from the repository and notifies the view(s) about the changes.void
BookingPresenter.rescheduleReservation
(Reservation reservation, String newDate) Modifies the date of an existing reservation and notifies the view(s) about the changes. -
Uses of Reservation in io.github.marcopaglio.booking.presenter.served
Methods in io.github.marcopaglio.booking.presenter.served with parameters of type ReservationModifier and TypeMethodDescriptionvoid
ServedBookingPresenter.deleteReservation
(Reservation reservation) Removes an existing reservation from the repository and notifies the view about the changes.void
ServedBookingPresenter.rescheduleReservation
(Reservation reservation, String newDate) Modifies the date of an existing reservation and notifies the view about the changes. -
Uses of Reservation in io.github.marcopaglio.booking.repository
Methods in io.github.marcopaglio.booking.repository that return ReservationModifier and TypeMethodDescriptionReservationRepository.save
(Reservation reservation) Insert a new reservation in the database or saves changes of an existing one.Methods in io.github.marcopaglio.booking.repository that return types with arguments of type ReservationModifier and TypeMethodDescriptionReservationRepository.findAll()
Retrieves all the reservations from the database in a list.ReservationRepository.findByClient
(UUID clientId) Retrieves all the reservations associated with the specified client's identifier from the database in a list.ReservationRepository.findByDate
(LocalDate date) Retrieves the unique reservation of the specified date from the database, if it exists.Retrieves the unique reservation with the specified identifier from the database, if it exists.Methods in io.github.marcopaglio.booking.repository with parameters of type ReservationModifier and TypeMethodDescriptionvoid
ReservationRepository.delete
(Reservation reservation) Removes the unique specified reservation from the database, if it exists, otherwise it does nothing.ReservationRepository.save
(Reservation reservation) Insert a new reservation in the database or saves changes of an existing one. -
Uses of Reservation in io.github.marcopaglio.booking.repository.mongo
Methods in io.github.marcopaglio.booking.repository.mongo that return ReservationModifier and TypeMethodDescriptionReservationMongoRepository.save
(Reservation reservation) Insert a new reservation in the MongoDB database or saves changes of an existing one.Methods in io.github.marcopaglio.booking.repository.mongo that return types with arguments of type ReservationModifier and TypeMethodDescriptionReservationMongoRepository.findAll()
Retrieves all the reservations from the database in a list.ReservationMongoRepository.findByClient
(UUID clientId) Retrieves all the reservations associated with the specified client's identifier from the MongoDB database in a list.ReservationMongoRepository.findByDate
(LocalDate date) Retrieves the unique reservation of the specified date from the MongoDB database, if it exists.Retrieves the unique reservation with the specified identifier from the MongoDB database, if it exists.Methods in io.github.marcopaglio.booking.repository.mongo with parameters of type ReservationModifier and TypeMethodDescriptionvoid
ReservationMongoRepository.delete
(Reservation reservation) Removes the unique specified reservation from the MongoDB database, if it exists, otherwise it does nothing.ReservationMongoRepository.save
(Reservation reservation) Insert a new reservation in the MongoDB database or saves changes of an existing one. -
Uses of Reservation in io.github.marcopaglio.booking.repository.postgres
Methods in io.github.marcopaglio.booking.repository.postgres that return ReservationModifier and TypeMethodDescriptionReservationPostgresRepository.save
(Reservation reservation) Insert a new reservation in the PostgreSQL database or saves changes of an existing one.Methods in io.github.marcopaglio.booking.repository.postgres that return types with arguments of type ReservationModifier and TypeMethodDescriptionReservationPostgresRepository.findAll()
Retrieves all the reservations from the PostgreSQL database in a list.ReservationPostgresRepository.findByClient
(UUID clientId) Retrieves all the reservations associated with the specified client's identifier from the PostgreSQL database in a list.ReservationPostgresRepository.findByDate
(LocalDate date) Retrieves the unique reservation of the specified date from the PostgreSQL database, if it exists.Retrieves the unique reservation with the specified identifier from the PostgreSQL database, if it exists.Methods in io.github.marcopaglio.booking.repository.postgres with parameters of type ReservationModifier and TypeMethodDescriptionvoid
ReservationPostgresRepository.delete
(Reservation reservation) Removes the unique specified reservation from the PostgreSQL database, if it exists, otherwise it does nothing.ReservationPostgresRepository.save
(Reservation reservation) Insert a new reservation in the PostgreSQL database or saves changes of an existing one. -
Uses of Reservation in io.github.marcopaglio.booking.service
Methods in io.github.marcopaglio.booking.service that return ReservationModifier and TypeMethodDescriptionBookingService.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.BookingService.rescheduleReservation
(UUID id, LocalDate newDate) Changes date of the reservation with the specified id in the database.Methods in io.github.marcopaglio.booking.service that return types with arguments of type ReservationModifier and TypeMethodDescriptionBookingService.findAllReservations()
Retrieves all the reservations saved in the database.Methods in io.github.marcopaglio.booking.service with parameters of type ReservationModifier and TypeMethodDescriptionBookingService.insertNewReservation
(Reservation reservation) Adds a new reservation in the database. -
Uses of Reservation in io.github.marcopaglio.booking.service.transactional
Methods in io.github.marcopaglio.booking.service.transactional that return ReservationModifier and TypeMethodDescriptionTransactionalBookingService.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.TransactionalBookingService.rescheduleReservation
(UUID id, LocalDate newDate) Changes date of the reservation with the specified id in the database within a transaction.Methods in io.github.marcopaglio.booking.service.transactional that return types with arguments of type ReservationModifier and TypeMethodDescriptionTransactionalBookingService.findAllReservations()
Retrieves all the reservations saved in the database within a transaction.Methods in io.github.marcopaglio.booking.service.transactional with parameters of type ReservationModifier and TypeMethodDescriptionTransactionalBookingService.insertNewReservation
(Reservation reservation) Adds a new reservation in the database within a transaction. -
Uses of Reservation in io.github.marcopaglio.booking.view
Methods in io.github.marcopaglio.booking.view with parameters of type ReservationModifier and TypeMethodDescriptionvoid
BookingView.reservationAdded
(Reservation reservation) Displays the reservation just inserted into the repository on the user interface.void
BookingView.reservationRemoved
(Reservation reservation) Makes the just deleted reservation disappear from the user interface.void
BookingView.reservationRescheduled
(Reservation oldReservation, Reservation rescheduledReservation) Displays the changes of the reservation just rescheduled on the user interface.Method parameters in io.github.marcopaglio.booking.view with type arguments of type ReservationModifier and TypeMethodDescriptionvoid
BookingView.showAllReservations
(List<Reservation> reservations) Displays the reservations of the given list on the user interface. -
Uses of Reservation in io.github.marcopaglio.booking.view.swing
Methods in io.github.marcopaglio.booking.view.swing with parameters of type ReservationModifier and TypeMethodDescriptionvoid
BookingSwingView.reservationAdded
(Reservation reservation) Displays the reservation just inserted into the repository on the user interface through Swing.void
BookingSwingView.reservationRemoved
(Reservation reservation) Makes the just deleted reservation disappear from the user interface through Swing.void
BookingSwingView.reservationRescheduled
(Reservation oldReservation, Reservation rescheduledReservation) Displays the changes of the reservation just rescheduled on the user interface through Swing.Method parameters in io.github.marcopaglio.booking.view.swing with type arguments of type ReservationModifier and TypeMethodDescriptionvoid
BookingSwingView.showAllReservations
(List<Reservation> reservations) Displays the reservations of the given list on the user interface through Swing.