Uses of Class
edu.ucsb.cs156.example.entities.User
Packages that use User
- 
Uses of User in edu.ucsb.cs156.example.repositoriesMethods in edu.ucsb.cs156.example.repositories that return types with arguments of type UserModifier and TypeMethodDescriptionUserRepository.findByEmail(String email) This method returns a User entity with a given email.Methods in edu.ucsb.cs156.example.repositories with parameters of type UserModifier and TypeMethodDescriptionTodoRepository.findByIdAndUser(long id, User user) This method returns a Todo entity with a given id and user.
- 
Uses of User in edu.ucsb.cs156.example.servicesMethods in edu.ucsb.cs156.example.services that return UserModifier and TypeMethodDescriptionCurrentUserServiceImpl.getOAuth2AuthenticatedUser(org.springframework.security.core.context.SecurityContext securityContext, org.springframework.security.core.Authentication authentication) This method obtains the current user that is logged in with OAuth2, if any.abstract UserCurrentUserService.getUser()This method returns the current user as a User object.CurrentUserServiceImpl.getUser()This method returns the current user as a User object.