Uses of Class
com.alpaca.entity.Advertiser
Packages that use Advertiser
Package
Description
-
Uses of Advertiser in com.alpaca.entity
Fields in com.alpaca.entity declared as AdvertiserModifier and TypeFieldDescriptionprivate Advertiser
User.advertiser
The Advertiser entity associated with the User. -
Uses of Advertiser in com.alpaca.mapper.impl
Methods in com.alpaca.mapper.impl that return AdvertiserModifier and TypeMethodDescriptionAdvertiserMapperImpl.toEntity
(AdvertiserRequestDTO requestDTO) Converts anAdvertiserRequestDTO
into anAdvertiser
entity.Methods in com.alpaca.mapper.impl with parameters of type AdvertiserModifier and TypeMethodDescriptionAdvertiserMapperImpl.toResponseDTO
(Advertiser entity) Maps anAdvertiser
entity to anAdvertiserResponseDTO
.Method parameters in com.alpaca.mapper.impl with type arguments of type AdvertiserModifier and TypeMethodDescriptionAdvertiserMapperImpl.toListResponseDTO
(Collection<Advertiser> entities) Converts a collection ofAdvertiser
entities into a list ofAdvertiserResponseDTO
. -
Uses of Advertiser in com.alpaca.persistence.impl
Methods in com.alpaca.persistence.impl that return AdvertiserModifier and TypeMethodDescriptionAdvertiserDAOImpl.updateById
(Advertiser advertiser, UUID id) Updates an existingAdvertiser
identified by the given ID with non-null and non-blank values from the providedadvertiser
object.Methods in com.alpaca.persistence.impl that return types with arguments of type AdvertiserModifier and TypeMethodDescriptionprotected Class
<Advertiser> AdvertiserDAOImpl.getEntity()
Returns theAdvertiser
entity class managed by this DAO.protected GenericRepo
<Advertiser, UUID> AdvertiserDAOImpl.getRepo()
Provides the repository used by the generic DAO framework.Methods in com.alpaca.persistence.impl with parameters of type AdvertiserModifier and TypeMethodDescriptionboolean
AdvertiserDAOImpl.existsByUniqueProperties
(Advertiser advertiser) Determines whether an advertiser already exists based on the associated user ID.AdvertiserDAOImpl.updateById
(Advertiser advertiser, UUID id) Updates an existingAdvertiser
identified by the given ID with non-null and non-blank values from the providedadvertiser
object. -
Uses of Advertiser in com.alpaca.service.impl
Methods in com.alpaca.service.impl that return types with arguments of type AdvertiserModifier and TypeMethodDescriptionprotected IGenericDAO
<Advertiser, UUID> AdvertiserServiceImpl.getDAO()
Provides the generic DAO used by inherited service methods.