Uses of Record Class
com.alpaca.dto.response.ProfileResponseDTO
Packages that use ProfileResponseDTO
-
Uses of ProfileResponseDTO in com.alpaca.controller
Methods in com.alpaca.controller that return types with arguments of type ProfileResponseDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity
<List<ProfileResponseDTO>> ProfileController.findAll()
Retrieves all profiles.org.springframework.http.ResponseEntity
<org.springframework.data.web.PagedModel<ProfileResponseDTO>> ProfileController.findAllPage
(org.springframework.data.domain.Pageable pageable) Retrieves a paginated list of profiles.org.springframework.http.ResponseEntity
<ProfileResponseDTO> Retrieves a profile by its unique identifier.org.springframework.http.ResponseEntity
<ProfileResponseDTO> ProfileController.save
(@Valid ProfileRequestDTO request) Creates a new profile.org.springframework.http.ResponseEntity
<ProfileResponseDTO> ProfileController.updateById
(@Valid ProfileRequestDTO request, UUID id) Updates an existing profile identified by its unique identifier. -
Uses of ProfileResponseDTO in com.alpaca.dto.response
Fields in com.alpaca.dto.response declared as ProfileResponseDTOModifier and TypeFieldDescriptionprivate final ProfileResponseDTO
UserResponseDTO.profile
The field for theprofile
record component.Methods in com.alpaca.dto.response that return ProfileResponseDTOModifier and TypeMethodDescriptionUserResponseDTO.profile()
Returns the value of theprofile
record component.Constructors in com.alpaca.dto.response with parameters of type ProfileResponseDTOModifierConstructorDescriptionUserResponseDTO
(UUID id, String email, List<RoleResponseDTO> roles, ProfileResponseDTO profile, AdvertiserResponseDTO advertiser) Creates an instance of aUserResponseDTO
record class. -
Uses of ProfileResponseDTO in com.alpaca.mapper.impl
Methods in com.alpaca.mapper.impl that return ProfileResponseDTOModifier and TypeMethodDescriptionProfileMapperImpl.toResponseDTO
(Profile entity) Converts aProfile
entity into aProfileResponseDTO
.Methods in com.alpaca.mapper.impl that return types with arguments of type ProfileResponseDTOModifier and TypeMethodDescriptionProfileMapperImpl.toListResponseDTO
(Collection<Profile> entities) Converts a collection ofProfile
entities into a list ofProfileResponseDTO
.