Uses of Class
com.skava.entities.ConsentEntity
Packages that use ConsentEntity
Package
Description
This package contains the user domain factory definition classes.
This package contains the user domain factory implementation classes.
This package contains the user entities classes.
This package contains the user repository classes.
This package contains the user service implementation classes.
This package holds the user util method classes.
-
Uses of ConsentEntity in com.skava.business.factory
Methods in com.skava.business.factory that return ConsentEntityModifier and TypeMethodDescriptionConsentEntityFactory.createConsentEntity
(ConsentDomain consentDomain, CollectionEntity collection) This method converts theConsentDomain
object toConsentEntity
object.Methods in com.skava.business.factory with parameters of type ConsentEntityModifier and TypeMethodDescriptionConsentFactory.createConsent
(ConsentEntity consent, CollectionEntity collectionEntity) This method converts theConsentEntity
object toConsent
object.ConsentDomainFactory.createConsentDO
(ConsentEntity consent) This method converts theConsentEntity
object toConsentDomain
objectUserConsentEntityFactory.createUserConsentEntity
(UserConsentDomain userconsentDomain, ConsentEntity consentEntity, UsersEntity usersEntity) This method converts theUserConsentDomain
object toUserConsentEntity
object. -
Uses of ConsentEntity in com.skava.business.factoryimpl
Methods in com.skava.business.factoryimpl that return ConsentEntityModifier and TypeMethodDescriptionConsentEntityFactoryImpl.createConsentEntity
(ConsentDomain consentDomain, CollectionEntity collectionEntity) This method converts theConsentDomain
object toConsentEntity
object.Methods in com.skava.business.factoryimpl with parameters of type ConsentEntityModifier and TypeMethodDescriptionConsentFactoryImpl.createConsent
(ConsentEntity consents, CollectionEntity collectionEntity) This method converts theConsentEntity
object toConsent
object.ConsentDomainFactoryImpl.createConsentDO
(ConsentEntity consent) This method converts theConsentEntity
object toConsentDomain
objectUserConsentEntityFactoryImpl.createUserConsentEntity
(UserConsentDomain userConsentDomain, ConsentEntity consentEntity, UsersEntity usersEntity) This method converts theUserConsentDomain
object toUserConsentEntity
object. -
Uses of ConsentEntity in com.skava.entities
Constructor parameters in com.skava.entities with type arguments of type ConsentEntityModifierConstructorDescriptionQConsentEntity
(com.querydsl.core.types.Path<? extends ConsentEntity> path) QConsentEntity
(Class<? extends ConsentEntity> type, com.querydsl.core.types.PathMetadata metadata, com.querydsl.core.types.dsl.PathInits inits) -
Uses of ConsentEntity in com.skava.repository
Methods in com.skava.repository that return types with arguments of type ConsentEntityModifier and TypeMethodDescriptionConsentRepository.findByIdAndCollectionId
(long id, long collectionId) This is used to load the consent by consentId and collectionId.ConsentRepository.findIdByTitleAndCollectionId
(String title, long collectionId) This is used to load the consent by title and collectionId. -
Uses of ConsentEntity in com.skava.service.impl
Methods in com.skava.service.impl that return types with arguments of type ConsentEntityModifier and TypeMethodDescriptionGetAllConsentServiceImpl.searchConsent
(List<SearchCriteria> params, int offset, int limit, long collectionId) This method is used to search consents. -
Uses of ConsentEntity in com.skava.util
Methods in com.skava.util that return ConsentEntityModifier and TypeMethodDescriptionstatic ConsentEntity
CacheUtil.getConsentEntityFromDBOrCache
(ConsentCommonServices consentCommonServices, long consentId, long collectionId, UserCommonServices userCommonServices, String locale, boolean saveToCache) This method is used to load consent entity value from cache or DB.