Uses of Class
de.gustavblass.fsu.fmi.roombooking.service.ReservationService
Packages that use ReservationService
Package
Description
-
Uses of ReservationService in de.gustavblass.fsu.fmi.roombooking.controller
Fields in de.gustavblass.fsu.fmi.roombooking.controller declared as ReservationServiceModifier and TypeFieldDescriptionprivate final ReservationServiceReservationController.reservationServiceUsed to retrieve and save Reservations from the database.private final ReservationServiceReservationRestController.reservationServiceUsed to retrieve and save Reservations from the database.Constructors in de.gustavblass.fsu.fmi.roombooking.controller with parameters of type ReservationServiceModifierConstructorDescriptionReservationController(@NonNull ReservationService reservationService, @NonNull RoomService roomService, @NonNull PathLocaliser pathLocaliser) Creates a newReservationController.ReservationRestController(@NonNull ReservationService reservationService, @NonNull ReservationMapper reservationMapper) Creates a newReservationRestController. -
Uses of ReservationService in de.gustavblass.fsu.fmi.roombooking.controller.admin
Fields in de.gustavblass.fsu.fmi.roombooking.controller.admin declared as ReservationServiceModifier and TypeFieldDescriptionprivate final @NonNull ReservationServiceReservationAdminController.reservationServiceUsed to retrieve and save Reservations from the database.private final ReservationServiceReservationAdminRestController.reservationServiceUsed to retrieve and save Reservations from the database.Constructors in de.gustavblass.fsu.fmi.roombooking.controller.admin with parameters of type ReservationServiceModifierConstructorDescriptionReservationAdminController(@NonNull ReservationController reservationController, @NonNull ReservationService reservationService, @NonNull RoomService roomService, @NonNull PathLocaliser pathLocaliser) Creates a newReservationAdminControllerwith the givenReservationAdminController.reservationService.ReservationAdminRestController(@NonNull ReservationService reservationService, @NonNull ReservationMapper reservationMapper) Constructs a newReservationAdminRestControllerwith the givenReservationAdminRestController.reservationService. -
Uses of ReservationService in de.gustavblass.fsu.fmi.roombooking.service
Fields in de.gustavblass.fsu.fmi.roombooking.service declared as ReservationServiceModifier and TypeFieldDescriptionprivate final @NonNull ReservationServiceActorService.reservationServiceUsed byActorService.deleteActor(String)to find Reservations of the user to be deleted.private final ReservationServiceRoomService.reservationServiceConstructors in de.gustavblass.fsu.fmi.roombooking.service with parameters of type ReservationServiceModifierConstructorDescriptionActorService(@NonNull ActorRepository actorRepository, @NonNull ActorMetadataRepository actorMetadataRepository, @NonNull VerificationTokenRepository verificationTokenRepository, @NonNull ActorMapper actorMapper, @NonNull org.springframework.security.crypto.password.PasswordEncoder passwordEncoder, @NonNull ReservationService reservationService, @Nullable org.springframework.security.ldap.authentication.BindAuthenticator bindAuthenticator, @NonNull RegistrationMode registrationMode, @NonNull Duration verificationTokenValidity, @NonNull Duration eMailVerificationTokenValidity, @NonNull List<String> eMailDomainWhitelist, @NonNull List<String> eMailDomainBlacklist, @NonNull org.springframework.context.ApplicationEventPublisher eventPublisher) RoomService(@NonNull RoomRepository roomRepository, @NonNull ReservationService reservationService, @NonNull EquipmentService equipmentService) Constructs a new RoomService.