Uses of Class
tech.lastbox.lastshield.basicauth.entity.User
Packages that use User
Package
Description
-
Uses of User in tech.lastbox.lastshield.basicauth.mapper
Methods in tech.lastbox.lastshield.basicauth.mapper that return UserModifier and TypeMethodDescriptionMaps a UserDTO to a User entity.Methods in tech.lastbox.lastshield.basicauth.mapper with parameters of type User -
Uses of User in tech.lastbox.lastshield.basicauth.repository
Methods in tech.lastbox.lastshield.basicauth.repository that return types with arguments of type UserModifier and TypeMethodDescriptionUserRepository.findUserById(Long id) Find a user by their unique ID.UserRepository.findUserByRole(String role) Find a user by their role.UserRepository.findUserByUsername(String username) Find a user by their unique username.UserRepository.findUsersByRole(String role) Find all users with the specified role. -
Uses of User in tech.lastbox.lastshield.basicauth.service
Methods in tech.lastbox.lastshield.basicauth.service that return UserModifier and TypeMethodDescriptionUserService.createUser(String name, String username, String rawPassword) Creates a new user.UserService.findUserByUsername(String username) Find a user by their username.UserService.updateUser(User user) Updates the user details.Methods in tech.lastbox.lastshield.basicauth.service that return types with arguments of type UserModifier and TypeMethodDescriptionAttempts to log in with the provided username and password.Methods in tech.lastbox.lastshield.basicauth.service with parameters of type User