Uses of Class
com.fiap.tech_challenge.parte1.ms_users.entities.User
Packages that use User
Package
Description
-
Uses of User in com.fiap.tech_challenge.parte1.ms_users.mappers
Methods in com.fiap.tech_challenge.parte1.ms_users.mappers with parameters of type UserModifier and TypeMethodDescriptionUserMapper.toResponseDTO(User user) Converts a singleUserentity to aUsersResponseDTO.Method parameters in com.fiap.tech_challenge.parte1.ms_users.mappers with type arguments of type UserModifier and TypeMethodDescriptionUserMapper.toResponseDTO(List<User> users) Converts a list ofUserentities to a list ofUsersResponseDTOs. -
Uses of User in com.fiap.tech_challenge.parte1.ms_users.repositories
Methods in com.fiap.tech_challenge.parte1.ms_users.repositories that return types with arguments of type UserModifier and TypeMethodDescriptionUserRepository.findAll(int size, int offset) Retrieves a paginated list of users.UserRepositoryImpl.findAll(int size, int offset) Retrieves a paginated list of users from the database.Finds a user by their unique identifier.Finds a user by their unique identifier.UserRepository.findByLogin(String login) Finds a user by their login (username or email).UserRepositoryImpl.findByLogin(String login) Finds a user by their login.Methods in com.fiap.tech_challenge.parte1.ms_users.repositories with parameters of type User