Uses of Class
com.skava.entities.CollectionEntity
Packages that use CollectionEntity
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 DTO model classes.
This package contains the user response model 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 CollectionEntity in com.skava.business.factory
Methods in com.skava.business.factory that return CollectionEntityModifier and TypeMethodDescriptionUserEntityFactory.createCollectionEntity
(CollectionDomain collections) This method converts theCollectionDomain
object toCollectionEntity
object.Methods in com.skava.business.factory with parameters of type CollectionEntityModifier and TypeMethodDescriptionConsentFactory.createConsent
(ConsentEntity consent, CollectionEntity collectionEntity) This method converts theConsentEntity
object toConsent
object.ConsentEntityFactory.createConsentEntity
(ConsentDomain consentDomain, CollectionEntity collection) This method converts theConsentDomain
object toConsentEntity
object.NotesDomainFactory.createNotesDomainFromEntity
(NotesEntity notes, CollectionEntity collectionEntity, UsersEntity usersEntity) UserEntityFactory.createUserEntity
(UsersDomain user, CollectionEntity collectionEntity) This method converts theUsersDomain
object toUsersEntity
object.UserEntityFactory.createUserListEntity
(List<UsersDomain> users, CollectionEntity collectionEntity) -
Uses of CollectionEntity in com.skava.business.factoryimpl
Methods in com.skava.business.factoryimpl that return CollectionEntityModifier and TypeMethodDescriptionUserEntityFactoryImpl.createCollectionEntity
(CollectionDomain collections) This method converts theCollectionDomain
object toCollectionEntity
object.Methods in com.skava.business.factoryimpl with parameters of type CollectionEntityModifier and TypeMethodDescriptionConsentFactoryImpl.createConsent
(ConsentEntity consents, CollectionEntity collectionEntity) This method converts theConsentEntity
object toConsent
object.ConsentEntityFactoryImpl.createConsentEntity
(ConsentDomain consentDomain, CollectionEntity collectionEntity) This method converts theConsentDomain
object toConsentEntity
object.NotesDomainFactoryImpl.createNotesDomainFromEntity
(NotesEntity notes, CollectionEntity collectionEntity, UsersEntity userEntity) UserEntityFactoryImpl.createUserEntity
(UsersDomain usersDomain, CollectionEntity collectionEntity) This method converts theUsersDomain
object toUsersEntity
object.UserEntityFactoryImpl.createUserListEntity
(List<UsersDomain> users, CollectionEntity collectionEntity) -
Uses of CollectionEntity in com.skava.entities
Constructors in com.skava.entities with parameters of type CollectionEntityModifierConstructorDescriptionCollectionPropertyEntity
(CollectionEntity collection, CollectionAttributeEntity attribute, CollectionProperty property) Instantiates a new collection property entity.Constructor parameters in com.skava.entities with type arguments of type CollectionEntityModifierConstructorDescriptionQCollectionEntity
(com.querydsl.core.types.Path<? extends CollectionEntity> path) -
Uses of CollectionEntity in com.skava.model.datatransferobjects
Methods in com.skava.model.datatransferobjects that return CollectionEntityModifier and TypeMethodDescriptionCollection.toEntity()
This method is used to set collcetion's Id to entity.Methods in com.skava.model.datatransferobjects with parameters of type CollectionEntityModifier and TypeMethodDescriptionCollectionProperty.toEntity
(CollectionEntity collections) This method is used to convert Collection entity to Collection property entity.Constructors in com.skava.model.datatransferobjects with parameters of type CollectionEntityModifierConstructorDescriptionCollection
(CollectionEntity collection, boolean isLoadProperties) Instantiates a newCollection
object fromCollectionEntity
object.CollectionList
(CollectionEntity collection) Instantiates a new collection. -
Uses of CollectionEntity in com.skava.model.responses
Constructors in com.skava.model.responses with parameters of type CollectionEntityModifierConstructorDescriptionCommonCollectionResponse
(CollectionEntity collection) Instantiates a new CommonCollectionResponse object.Constructor parameters in com.skava.model.responses with type arguments of type CollectionEntityModifierConstructorDescriptionCollectionsResponse
(List<CollectionEntity> collections, PageableInfo pageableInfo) Instantiates a new user collections response. -
Uses of CollectionEntity in com.skava.repository
Methods in com.skava.repository that return types with arguments of type CollectionEntityModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<CollectionEntity>
CollectionRepository.findAll
(org.springframework.data.jpa.domain.Specification<CollectionEntity> specification, org.springframework.data.domain.Pageable pageable) This is used to find all collection objects based on specification and Pageable.This is used to load the collection by collection id.CollectionRepository.findByIdAndBusinessId
(Long collectionId, Long businessId) This is used to load the collection by collection id and business id.CollectionRepository.findByName
(String collectionName) This is used to load the collection by name.CollectionRepository.findByNameAndBusinessId
(String collectionName, Long businessId) This is used to load the collection by name and business Id.Method parameters in com.skava.repository with type arguments of type CollectionEntityModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<CollectionEntity>
CollectionRepository.findAll
(org.springframework.data.jpa.domain.Specification<CollectionEntity> specification, org.springframework.data.domain.Pageable pageable) This is used to find all collection objects based on specification and Pageable. -
Uses of CollectionEntity in com.skava.service.impl
Methods in com.skava.service.impl that return types with arguments of type CollectionEntityModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<CollectionEntity>
GetAllCollectionServiceImpl.search
(String filters, org.springframework.data.domain.Pageable pageable, String locale) This method is used to search the collection based on the given filter and pageable request.Methods in com.skava.service.impl with parameters of type CollectionEntityModifier and TypeMethodDescriptionCreateUserServiceImplHelper.createGuestUser
(Users usersVO, CollectionEntity collectionEntity) Used to creates the guest user by checking the guest flag in user object from request. -
Uses of CollectionEntity in com.skava.util
Methods in com.skava.util that return CollectionEntityModifier and TypeMethodDescriptionstatic CollectionEntity
UserCollectionUtil.validateCollection
(UserCommonServices userCommonServices, Long collectionId, Long businessId, String locale) This method is used to retrieve the collection for the given collectionId and businessId.Methods in com.skava.util with parameters of type CollectionEntityModifier and TypeMethodDescriptionstatic Set<CollectionPropertyEntity>
UserCollectionUtil.getCollectionProperties
(CollectionEntity collection, List<CollectionProperty> requestProperties, List<CollectionAttributeEntity> attributes, UserCommonServices userCommonServices, String locale, boolean isCreate) This method will compare collection attributes and collection properties from the request object and adds it to the CollectionPropertyEntity set.static Set<CollectionPropertyEntity>
UserCollectionUtil.getUpdatedCollectionProperties
(CollectionEntity collection, List<CollectionProperty> requestProperties, List<CollectionAttributeEntity> attributes, UserCommonServices userCommonServices, String locale) This method is used to retrieve the updated collection properties for the given collection.