Uses of Record Class
com.app.controller.dto.user.UserDto
Packages that use UserDto
Package
Description
-
Uses of UserDto in com.app.controller
Methods in com.app.controller that return types with arguments of type UserDtoModifier and TypeMethodDescriptionUserController.getActualLoginUser
(String token) Retrieves information about the currently logged-in user.Retrieves a user by their ID.UserController.getUsers
(UserSpecificationDto userSpecificationDto) Retrieves users filtered by criteria. -
Uses of UserDto in com.app.persistence.entity
Methods in com.app.persistence.entity that return UserDto -
Uses of UserDto in com.app.service
Methods in com.app.service that return UserDtoModifier and TypeMethodDescriptionUserService.getActualLoginUser
(String token) Retrieves the currently logged-in user's details based on the provided token.UserService.getUserById
(Long id) Retrieves a user by their unique ID.Methods in com.app.service that return types with arguments of type UserDtoModifier and TypeMethodDescriptionUserService.getUsers
(UserSpecificationDto userSpecificationDto) Retrieves a list of users matching the specified criteria. -
Uses of UserDto in com.app.service.impl
Methods in com.app.service.impl that return UserDtoModifier and TypeMethodDescriptionUserServiceImpl.getActualLoginUser
(String token) Retrieves the currently logged-in user based on the authentication token.UserServiceImpl.getUserById
(Long id) Retrieves a user by their ID.Methods in com.app.service.impl that return types with arguments of type UserDtoModifier and TypeMethodDescriptionUserServiceImpl.getUsers
(UserSpecificationDto userSpecificationDto) Retrieves a list of users filtered by the given specification.