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 theaddressrecord 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 aUsersResponseDTOrecord 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 singleAddressentity 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 ofAddressentities to a list ofAddressResponseDTOs.