Uses of Record Class
com.alpaca.dto.response.AdvertiserResponseDTO
Packages that use AdvertiserResponseDTO
-
Uses of AdvertiserResponseDTO in com.alpaca.controller
Methods in com.alpaca.controller that return types with arguments of type AdvertiserResponseDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<AdvertiserResponseDTO>> AdvertiserController.findAll()Retrieves all advertisers.org.springframework.http.ResponseEntity<org.springframework.data.web.PagedModel<AdvertiserResponseDTO>> AdvertiserController.findAllPage(org.springframework.data.domain.Pageable pageable) Retrieves a paginated list of advertisers.org.springframework.http.ResponseEntity<AdvertiserResponseDTO> Retrieves an advertiser by its unique identifier.org.springframework.http.ResponseEntity<AdvertiserResponseDTO> AdvertiserController.save(@Valid AdvertiserRequestDTO request) Creates a new advertiser.org.springframework.http.ResponseEntity<AdvertiserResponseDTO> AdvertiserController.updateById(@Valid AdvertiserRequestDTO request, UUID id) Updates an existing advertiser identified by its unique identifier. -
Uses of AdvertiserResponseDTO in com.alpaca.dto.response
Fields in com.alpaca.dto.response declared as AdvertiserResponseDTOModifier and TypeFieldDescriptionprivate final AdvertiserResponseDTOUserResponseDTO.advertiserThe field for theadvertiserrecord component.Methods in com.alpaca.dto.response that return AdvertiserResponseDTOModifier and TypeMethodDescriptionUserResponseDTO.advertiser()Returns the value of theadvertiserrecord component.Constructors in com.alpaca.dto.response with parameters of type AdvertiserResponseDTOModifierConstructorDescriptionUserResponseDTO(UUID id, String email, List<RoleResponseDTO> roles, ProfileResponseDTO profile, AdvertiserResponseDTO advertiser) Creates an instance of aUserResponseDTOrecord class. -
Uses of AdvertiserResponseDTO in com.alpaca.mapper.impl
Methods in com.alpaca.mapper.impl that return AdvertiserResponseDTOModifier and TypeMethodDescriptionAdvertiserMapperImpl.toResponseDTO(Advertiser entity) Maps anAdvertiserentity to anAdvertiserResponseDTO.Methods in com.alpaca.mapper.impl that return types with arguments of type AdvertiserResponseDTOModifier and TypeMethodDescriptionAdvertiserMapperImpl.toListResponseDTO(Collection<Advertiser> entities) Converts a collection ofAdvertiserentities into a list ofAdvertiserResponseDTO.