Uses of Class
io.github.marcopaglio.booking.exception.UniquenessConstraintViolationException
Packages that use UniquenessConstraintViolationException
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 UniquenessConstraintViolationException in io.github.marcopaglio.booking.repository
Methods in io.github.marcopaglio.booking.repository that throw UniquenessConstraintViolationExceptionModifier 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 UniquenessConstraintViolationException in io.github.marcopaglio.booking.repository.mongo
Methods in io.github.marcopaglio.booking.repository.mongo that throw UniquenessConstraintViolationExceptionModifier 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 UniquenessConstraintViolationException in io.github.marcopaglio.booking.repository.postgres
Methods in io.github.marcopaglio.booking.repository.postgres that throw UniquenessConstraintViolationExceptionModifier 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.