Uses of Class
de.gustavblass.fsu.fmi.roombooking.model.actor.Actor
Packages that use Actor
Package
Description
-
Uses of Actor in de.gustavblass.fsu.fmi.roombooking.events
Fields in de.gustavblass.fsu.fmi.roombooking.events declared as ActorModifier and TypeFieldDescriptionprivate final @NonNull ActorActorCreatedEvent.actorThe user that was newly saved to the database.private final @NonNull ActorEMailChangeEvent.EMailChange.actorThe field for theactorrecord component.Methods in de.gustavblass.fsu.fmi.roombooking.events that return ActorModifier and TypeMethodDescription@NonNull ActorEMailChangeEvent.EMailChange.actor()Returns the value of theactorrecord component.@NonNull ActorActorCreatedEvent.getSource()Constructors in de.gustavblass.fsu.fmi.roombooking.events with parameters of type ActorModifierConstructorDescriptionActorCreatedEvent(@NonNull Actor actor) Constructs a newActorCreatedEvent.ActorCreatedEvent(@NonNull Actor actor, @NonNull Locale locale) Constructs a newActorCreatedEvent.EMailChange(@NonNull Actor actor, @NonNull String newEmail, @NonNull EMailVerificationToken verificationToken) Creates an instance of aEMailChangerecord class.UnconfirmedRegistrationEvent(@NonNull Actor actor, @NonNull VerificationToken verificationToken) Constructs a newUnconfirmedRegistrationEvent.UnconfirmedRegistrationEvent(@NonNull Actor actor, @NonNull VerificationToken verificationToken, @NonNull Locale locale) Constructs a newUnconfirmedRegistrationEvent. -
Uses of Actor in de.gustavblass.fsu.fmi.roombooking.mapper
Methods in de.gustavblass.fsu.fmi.roombooking.mapper with parameters of type Actor -
Uses of Actor in de.gustavblass.fsu.fmi.roombooking.model.actor
Subclasses of Actor in de.gustavblass.fsu.fmi.roombooking.model.actorModifier and TypeClassDescriptionclassRepresents anActorthat is authenticated against an LDAP server.classRepresents anActorwhose credentials are stored locally in the database.Classes in de.gustavblass.fsu.fmi.roombooking.model.actor that implement interfaces with type arguments of type ActorFields in de.gustavblass.fsu.fmi.roombooking.model.actor declared as ActorModifier and TypeFieldDescriptionprivate ActorVerificationToken.actorTheActorto whom theVerificationToken.tokenbelongs.Methods in de.gustavblass.fsu.fmi.roombooking.model.actor with parameters of type ActorModifier and TypeMethodDescriptionintDetermines whether this Actor or a given one has the higher-priorityActor.role. -
Uses of Actor in de.gustavblass.fsu.fmi.roombooking.model.reservation
Fields in de.gustavblass.fsu.fmi.roombooking.model.reservation declared as Actor -
Uses of Actor in de.gustavblass.fsu.fmi.roombooking.repository
Subinterfaces with type arguments of type Actor in de.gustavblass.fsu.fmi.roombooking.repositoryModifier and TypeInterfaceDescriptioninterfaceFetches/saves Actors from/to theusersdatabase table.Methods in de.gustavblass.fsu.fmi.roombooking.repository that return types with arguments of type ActorModifier and TypeMethodDescription@NonNull org.springframework.data.domain.Page<Actor> ActorRepository.findAll(@NonNull org.springframework.data.domain.Pageable pageable) A subset of all Actors in the database table according to the givenPageable.ActorRepository.findUserByUserName(@NonNull String username) Methods in de.gustavblass.fsu.fmi.roombooking.repository with parameters of type ActorModifier and TypeMethodDescriptionvoidRemoves the givenActorfrom the database table.voidVerificationTokenRepository.deleteByActor(@NonNull Actor actor) Removes theVerificationTokenof the givenVerificationToken.actorfrom the database.booleanReservationRepository.existsByApplicantAndId(@NonNull Actor applicant, @NonNull Long id) @NonNull org.springframework.data.domain.Page<Reservation> ReservationRepository.findCurrentReservationsByApplicant(@NonNull Actor applicant, @NonNull LocalDateTime now, @NonNull org.springframework.data.domain.Pageable pageable) Fetches all Reservations from the database placed by the givenActorwhere theReservation.endDateis in the future.@NonNull LinkedHashSet<Reservation> ReservationRepository.findReservationsByApplicant(@NonNull Actor applicant) Fetches all Reservations from the database placed by the givenActor.void -
Uses of Actor in de.gustavblass.fsu.fmi.roombooking.service
Methods in de.gustavblass.fsu.fmi.roombooking.service that return ActorModifier and TypeMethodDescription@NonNull ActorActorService.confirmNewEMail(@NonNull String verificationToken) Changes theActor.eMailAddressof theVerificationToken.actorto the newEMailVerificationToken.eMailAddress.@NonNull ActorActorService.createActor(@NonNull LocalActorCreatedByAdminDTO dto) Saves a newActorto the database.@NonNull ActorActorService.enableAccount(@NonNull String verificationToken) SetsActor.enabledto true for theVerificationToken.actorbelonging to the givenVerificationToken.token.@NonNull ActorActorService.findUserByUserName(@NonNull String userName) Methods in de.gustavblass.fsu.fmi.roombooking.service that return types with arguments of type ActorModifier and TypeMethodDescription@NonNull org.springframework.data.domain.Page<Actor> ActorService.findAll(@NonNull org.springframework.data.domain.Pageable pageable) A subset of all Actors in the database table according to the givenPageable.CurrentAuthorityService.getActor()Determines theActorthat makes the current request.Methods in de.gustavblass.fsu.fmi.roombooking.service with parameters of type ActorModifier and TypeMethodDescription@NonNull org.springframework.data.domain.Page<Reservation> ReservationService.findCurrentReservationsByApplicant(@NonNull Actor applicant, @NonNull org.springframework.data.domain.Pageable pageable) @NonNull LinkedHashSet<Reservation> ReservationService.findReservationsAfterDateTime(@NonNull Actor applicant, @NonNull LocalDateTime date) Fetches all Reservations from the database placed for theReservation.applicantwith the givenActor.idand starting or ending after the given date.@NonNull LinkedHashSet<Reservation> ReservationService.findReservationsByApplicant(@NonNull Actor applicant) Fetches all Reservations from the database placed by the givenActor.private @NonNull VerificationTokenActorService.generateVerificationToken(@NonNull Actor actor) Generates a newVerificationTokenwith theActorService.verificationTokenValidityfor the givenActorand saves the former to the database.