Uses of Class
com.glowmart.shop_management.dto.UserDto
Packages that use UserDto
Package
Description
-
Uses of UserDto in com.glowmart.shop_management.controller
Methods in com.glowmart.shop_management.controller that return types with arguments of type UserDtoModifier and TypeMethodDescriptionUserController.getUsersKeyset(Long lastId, int size) Retrieves a paginated list of users using keyset pagination.Methods in com.glowmart.shop_management.controller with parameters of type UserDtoModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<?>UserController.createUser(String role, UserDto userDto) Create or registeration a new user. -
Uses of UserDto in com.glowmart.shop_management.converter
Methods in com.glowmart.shop_management.converter that return UserDtoMethods in com.glowmart.shop_management.converter with parameters of type UserDto -
Uses of UserDto in com.glowmart.shop_management.service
Methods in com.glowmart.shop_management.service that return UserDtoModifier and TypeMethodDescriptionUserService.createUser(String role, UserDto userDto) UserService.findUserByEmail(String userEmail) UserService.findUserById(String id) Methods in com.glowmart.shop_management.service that return types with arguments of type UserDtoMethods in com.glowmart.shop_management.service with parameters of type UserDto -
Uses of UserDto in com.glowmart.shop_management.service.implementation
Methods in com.glowmart.shop_management.service.implementation that return UserDtoModifier and TypeMethodDescriptionUserServiceImpl.createUser(String role, UserDto userDto) Creates a new user with the specified role.UserServiceImpl.findUserByEmail(String userEmail) Finds a user by their email address.UserServiceImpl.findUserById(String id) Retrieves a user by their unique ID and converts the result to aUserDto.Methods in com.glowmart.shop_management.service.implementation that return types with arguments of type UserDtoModifier and TypeMethodDescriptionUserServiceImpl.findUsersAfterId(Long lastId, int size) Retrieves a paginated list of users after a given ID.Methods in com.glowmart.shop_management.service.implementation with parameters of type UserDtoModifier and TypeMethodDescriptionUserServiceImpl.createUser(String role, UserDto userDto) Creates a new user with the specified role.