Uses of Class
com.fiap.tech_challenge.parte1.ms_users.entities.Address
Packages that use Address
Package
Description
-
Uses of Address in com.fiap.tech_challenge.parte1.ms_users.entities
Methods in com.fiap.tech_challenge.parte1.ms_users.entities that return AddressMethods in com.fiap.tech_challenge.parte1.ms_users.entities that return types with arguments of type AddressModifier and TypeMethodDescriptionUser.getAddresses()
Returns the list of addresses associated with the user.Method parameters in com.fiap.tech_challenge.parte1.ms_users.entities with type arguments of type AddressModifier and TypeMethodDescriptionvoid
User.setAddress
(List<Address> address) Sets the addresses of the user. -
Uses of Address in com.fiap.tech_challenge.parte1.ms_users.mappers
Methods in com.fiap.tech_challenge.parte1.ms_users.mappers with parameters of type AddressModifier and TypeMethodDescriptionAddressMapper.toAddressRequestDTO
(Address address) Converts a singleAddress
entity to anAddressResponseDTO
.Method parameters in com.fiap.tech_challenge.parte1.ms_users.mappers with type arguments of type AddressModifier and TypeMethodDescriptionAddressMapper.toAddressRequestDTO
(List<Address> addresses) Converts a list ofAddress
entities to a list ofAddressResponseDTO
s. -
Uses of Address in com.fiap.tech_challenge.parte1.ms_users.repositories
Methods in com.fiap.tech_challenge.parte1.ms_users.repositories that return types with arguments of type AddressModifier and TypeMethodDescriptionAddressesRepository.findAllByUserId
(UUID userId) Retrieves all addresses associated with a specific user ID.AddressesRepositoryImpl.findAllByUserId
(UUID userId) Retrieves all addresses associated with the specified user ID.AddressesRepository.findAllByUserIds
(Set<UUID> userIdSet) Retrieves all addresses associated with a set of user IDs.AddressesRepositoryImpl.findAllByUserIds
(Set<UUID> userIdSet) Retrieves all addresses for a given set of user IDs. -
Uses of Address in com.fiap.tech_challenge.parte1.ms_users.services
Methods in com.fiap.tech_challenge.parte1.ms_users.services that return types with arguments of type AddressModifier and TypeMethodDescriptionAddressesService.findAllByUserId
(UUID userId) Retrieves all addresses associated with a specific user by their UUID.AddressesService.findAllByUserIds
(Set<UUID> userIdSet) Retrieves addresses for a set of user IDs and groups them by user ID (as String).