Uses of Record Class
com.fiap.tech_challenge.parte1.ms_users.dtos.AddressResponseDTO
Packages that use AddressResponseDTO
Package
Description
-
Uses of AddressResponseDTO in com.fiap.tech_challenge.parte1.ms_users.dtos
Methods in com.fiap.tech_challenge.parte1.ms_users.dtos that return types with arguments of type AddressResponseDTOModifier and TypeMethodDescriptionUsersResponseDTO.address()
Returns the value of theaddress
record component.Constructor parameters in com.fiap.tech_challenge.parte1.ms_users.dtos with type arguments of type AddressResponseDTOModifierConstructorDescriptionUsersResponseDTO
(UUID id, String name, String email, String login, String role, List<AddressResponseDTO> address) Creates an instance of aUsersResponseDTO
record class. -
Uses of AddressResponseDTO in com.fiap.tech_challenge.parte1.ms_users.mappers
Methods in com.fiap.tech_challenge.parte1.ms_users.mappers that return AddressResponseDTOModifier and TypeMethodDescriptionAddressMapper.toAddressRequestDTO
(Address address) Converts a singleAddress
entity to anAddressResponseDTO
.Methods in com.fiap.tech_challenge.parte1.ms_users.mappers that return types with arguments of type AddressResponseDTOModifier and TypeMethodDescriptionAddressMapper.toAddressRequestDTO
(List<Address> addresses) Converts a list ofAddress
entities to a list ofAddressResponseDTO
s.