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