Uses of Class
de.gustavblass.fsu.fmi.roombooking.model.actor.VerificationToken
Packages that use VerificationToken
Package
Description
-
Uses of VerificationToken in de.gustavblass.fsu.fmi.roombooking.events
Fields in de.gustavblass.fsu.fmi.roombooking.events declared as VerificationTokenModifier and TypeFieldDescriptionprivate final VerificationTokenUnconfirmedRegistrationEvent.verificationTokenTheVerificationTokenthat theActorCreatedEvent.actorwill need to use in order to confirm their account.Constructors in de.gustavblass.fsu.fmi.roombooking.events with parameters of type VerificationTokenModifierConstructorDescriptionUnconfirmedRegistrationEvent(@NonNull Actor actor, @NonNull VerificationToken verificationToken) Constructs a newUnconfirmedRegistrationEvent.UnconfirmedRegistrationEvent(@NonNull Actor actor, @NonNull VerificationToken verificationToken, @NonNull Locale locale) Constructs a newUnconfirmedRegistrationEvent. -
Uses of VerificationToken in de.gustavblass.fsu.fmi.roombooking.model.actor
Subclasses of VerificationToken in de.gustavblass.fsu.fmi.roombooking.model.actorModifier and TypeClassDescriptionclassAVerificationTokenthat is used to confirm a newActor.eMailAddress. -
Uses of VerificationToken in de.gustavblass.fsu.fmi.roombooking.repository
Subinterfaces with type arguments of type VerificationToken in de.gustavblass.fsu.fmi.roombooking.repositoryModifier and TypeInterfaceDescriptioninterfaceFetches/saves VerificationTokens from/to theverification_tokensdatabase table.Methods in de.gustavblass.fsu.fmi.roombooking.repository that return types with arguments of type VerificationTokenModifier and TypeMethodDescription@NonNull Optional<VerificationToken> VerificationTokenRepository.findByActorUserName(@NonNull String userName) @NonNull Optional<VerificationToken> VerificationTokenRepository.findByToken(@NonNull String token) Fetches theVerificationTokenwith the givenVerificationToken.tokenfrom the database.@NonNull Optional<VerificationToken> VerificationTokenRepository.findByTokenAndActorUserName(@NonNull String token, @NonNull String userName) Fetches theVerificationTokenthat matchesMethods in de.gustavblass.fsu.fmi.roombooking.repository with parameters of type VerificationTokenModifier and TypeMethodDescriptionvoidVerificationTokenRepository.delete(@NonNull VerificationToken verificationToken) Removes the givenVerificationTokenfrom the database table.voidVerificationTokenRepository.save(@NonNull VerificationToken verificationToken) Stores the givenVerificationTokenin the database table. -
Uses of VerificationToken in de.gustavblass.fsu.fmi.roombooking.service
Methods in de.gustavblass.fsu.fmi.roombooking.service that return VerificationTokenModifier and TypeMethodDescriptionprivate @NonNull VerificationTokenActorService.generateVerificationToken(@NonNull Actor actor) Generates a newVerificationTokenwith theActorService.verificationTokenValidityfor the givenActorand saves the former to the database.