Uses of Class
com.skava.entities.UserConsentEntity
Packages that use UserConsentEntity
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 holds the user util method classes.
-
Uses of UserConsentEntity in com.skava.business.factory
Methods in com.skava.business.factory that return UserConsentEntityModifier and TypeMethodDescriptionUserConsentEntityFactory.createUserConsentEntity
(UserConsentDomain userconsentDomain, ConsentEntity consentEntity, UsersEntity usersEntity) This method converts theUserConsentDomain
object toUserConsentEntity
object.Method parameters in com.skava.business.factory with type arguments of type UserConsentEntityModifier and TypeMethodDescriptionUserConsentDomainFactory.createUserConsentEntityListDO
(List<UserConsentEntity> consent) -
Uses of UserConsentEntity in com.skava.business.factoryimpl
Methods in com.skava.business.factoryimpl that return UserConsentEntityModifier and TypeMethodDescriptionUserConsentEntityFactoryImpl.createUserConsentEntity
(UserConsentDomain userConsentDomain, ConsentEntity consentEntity, UsersEntity usersEntity) This method converts theUserConsentDomain
object toUserConsentEntity
object.Method parameters in com.skava.business.factoryimpl with type arguments of type UserConsentEntityModifier and TypeMethodDescriptionUserConsentDomainFactoryImpl.createUserConsentEntityListDO
(List<UserConsentEntity> userConsentEntities) -
Uses of UserConsentEntity in com.skava.entities
Fields in com.skava.entities with type parameters of type UserConsentEntityModifier and TypeFieldDescriptionfinal com.querydsl.core.types.dsl.ListPath<UserConsentEntity,
QUserConsentEntity> QConsentEntity.userConsent
final com.querydsl.core.types.dsl.ListPath<UserConsentEntity,
QUserConsentEntity> QUsersEntity.userConsent
Constructor parameters in com.skava.entities with type arguments of type UserConsentEntityModifierConstructorDescriptionQUserConsentEntity
(com.querydsl.core.types.Path<? extends UserConsentEntity> path) QUserConsentEntity
(Class<? extends UserConsentEntity> type, com.querydsl.core.types.PathMetadata metadata, com.querydsl.core.types.dsl.PathInits inits) -
Uses of UserConsentEntity in com.skava.repository
Methods in com.skava.repository that return types with arguments of type UserConsentEntityModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<UserConsentEntity>
UserConsentRepository.findAllByUserId
(long userId, org.springframework.data.domain.Pageable pageRequest) This is used to load all the user consent by userId.UserConsentRepository.findByUserIdAndConsentId
(long userId, long consentId) This is used to load the user consent by userId and consentId. -
Uses of UserConsentEntity in com.skava.util
Methods in com.skava.util with parameters of type UserConsentEntityModifier and TypeMethodDescriptionstatic UserConsentHistoryEntity
UserConsentUtil.createUserConsentHistory
(UserConsentEntity userConsentEntity, String action) This method is used to create user consent history entity.Method parameters in com.skava.util with type arguments of type UserConsentEntityModifier and TypeMethodDescriptionstatic List<UserConsentHistoryEntity>
UserConsentUtil.createUserConsentHistoryList
(List<UserConsentEntity> userConsentEntities, String action) This method is used to create user consent history entity from user consent entity