Uses of Record Class
com.alpaca.dto.response.UserResponseDTO
Packages that use UserResponseDTO
-
Uses of UserResponseDTO in com.alpaca.controller
Methods in com.alpaca.controller that return types with arguments of type UserResponseDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<UserResponseDTO>> UserController.findAll()Retrieves all users.org.springframework.http.ResponseEntity<org.springframework.data.web.PagedModel<UserResponseDTO>> UserController.findAllPage(org.springframework.data.domain.Pageable pageable) Retrieves a paginated list of users.org.springframework.http.ResponseEntity<UserResponseDTO> Retrieves a user by its unique identifier.org.springframework.http.ResponseEntity<UserResponseDTO> UserController.save(@Valid UserRequestDTO request) Creates a new user.org.springframework.http.ResponseEntity<UserResponseDTO> UserController.updateById(@Valid UserRequestDTO request, UUID id) Updates an existing user identified by its unique identifier. -
Uses of UserResponseDTO in com.alpaca.mapper.impl
Methods in com.alpaca.mapper.impl that return UserResponseDTOModifier and TypeMethodDescriptionUserMapperImpl.toResponseDTO(User entity) Converts aUserentity into aUserResponseDTO.Methods in com.alpaca.mapper.impl that return types with arguments of type UserResponseDTOModifier and TypeMethodDescriptionUserMapperImpl.toListResponseDTO(Collection<User> entities) Converts a collection ofUserentities into a list ofUserResponseDTO.