Uses of Class
com.alpaca.entity.Profile
Packages that use Profile
Package
Description
-
Uses of Profile in com.alpaca.entity
Fields in com.alpaca.entity declared as Profile -
Uses of Profile in com.alpaca.mapper.impl
Methods in com.alpaca.mapper.impl that return ProfileModifier and TypeMethodDescriptionProfileMapperImpl.toEntity
(ProfileRequestDTO requestDTO) Converts aProfileRequestDTO
into aProfile
entity.Methods in com.alpaca.mapper.impl with parameters of type ProfileModifier and TypeMethodDescriptionProfileMapperImpl.toResponseDTO
(Profile entity) Converts aProfile
entity into aProfileResponseDTO
.Method parameters in com.alpaca.mapper.impl with type arguments of type ProfileModifier and TypeMethodDescriptionProfileMapperImpl.toListResponseDTO
(Collection<Profile> entities) Converts a collection ofProfile
entities into a list ofProfileResponseDTO
. -
Uses of Profile in com.alpaca.persistence.impl
Methods in com.alpaca.persistence.impl that return ProfileModifier and TypeMethodDescriptionProfileDAOImpl.updateById
(Profile profile, UUID id) Updates an existingProfile
identified by the given ID using non-null and non-blank values from the providedprofile
object.Methods in com.alpaca.persistence.impl that return types with arguments of type ProfileModifier and TypeMethodDescriptionProfileDAOImpl.getEntity()
Returns the class object representing theProfile
entity managed by this DAO.protected GenericRepo
<Profile, UUID> ProfileDAOImpl.getRepo()
Provides the repository used by the generic DAO framework.Methods in com.alpaca.persistence.impl with parameters of type ProfileModifier and TypeMethodDescriptionboolean
ProfileDAOImpl.existsByUniqueProperties
(Profile profile) Determines whether a profile already exists based on its unique property: the associated user ID.ProfileDAOImpl.updateById
(Profile profile, UUID id) Updates an existingProfile
identified by the given ID using non-null and non-blank values from the providedprofile
object. -
Uses of Profile in com.alpaca.service.impl
Methods in com.alpaca.service.impl that return types with arguments of type ProfileModifier and TypeMethodDescriptionprotected IGenericDAO
<Profile, UUID> ProfileServiceImpl.getDAO()
Provides the generic DAO used by inherited service methods.