Uses of Class
io.github.marcopaglio.booking.exception.UpdateFailureException
Packages that use UpdateFailureException
Package
Description
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.
-
Uses of UpdateFailureException in io.github.marcopaglio.booking.repository
Methods in io.github.marcopaglio.booking.repository that throw UpdateFailureExceptionModifier and TypeMethodDescriptionInserts a new Client in the database or saves changes of an existing one.ReservationRepository.save
(Reservation reservation) Insert a new reservation in the database or saves changes of an existing one. -
Uses of UpdateFailureException in io.github.marcopaglio.booking.repository.mongo
Methods in io.github.marcopaglio.booking.repository.mongo that throw UpdateFailureExceptionModifier and TypeMethodDescriptionInserts a new Client in the MongoDB database or saves changes of an existing one.ReservationMongoRepository.save
(Reservation reservation) Insert a new reservation in the MongoDB database or saves changes of an existing one. -
Uses of UpdateFailureException in io.github.marcopaglio.booking.repository.postgres
Methods in io.github.marcopaglio.booking.repository.postgres that throw UpdateFailureExceptionModifier and TypeMethodDescriptionInserts a new Client in the PostgreSQL database or saves changes of an existing one.ReservationPostgresRepository.save
(Reservation reservation) Insert a new reservation in the PostgreSQL database or saves changes of an existing one.