Uses of Class
com.example.demo.appuser.AppUser
Packages that use AppUser
Package
Description
-
Uses of AppUser in com.example.demo.appuser
Methods in com.example.demo.appuser that return types with arguments of type AppUserModifier and TypeMethodDescriptionUserRepository.findByEmail(String email) Finds a user by their unique email address.Methods in com.example.demo.appuser with parameters of type AppUserModifier and TypeMethodDescriptionAppUserService.signUpUser(AppUser appUser) Handles the user registration process. -
Uses of AppUser in com.example.demo.calorie
Methods in com.example.demo.calorie that return AppUserModifier and TypeMethodDescriptionCalorieLog.getUser()Retrieves the user associated with this calorie log.Methods in com.example.demo.calorie with parameters of type AppUserModifier and TypeMethodDescriptionCalorieLogRepository.findByUser(AppUser user) Retrieves a list of allCalorieLogentries associated with the specifiedAppUser.voidSets the user associated with this calorie log. -
Uses of AppUser in com.example.demo.registration.token
Constructors in com.example.demo.registration.token with parameters of type AppUserModifierConstructorDescriptionConfirmationToken(String token, LocalDateTime createdAt, LocalDateTime expiresAt, AppUser appUser) Constructs a new ConfirmationToken instance.