Uses of Class
com.skava.entities.CollectionEntity
Packages that use CollectionEntity
Package
Description
Notification DB entities.
Notification Helper classes
Notification domain models.
Notification repositories.
Notification service implementations.
-
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.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.helper
Methods in com.skava.helper that return CollectionEntityModifier and TypeMethodDescriptionstatic CollectionEntity
CollectionUtil.validateCollectionAndBusinessId
(CollectionRepository collectionRepository, org.springframework.context.MessageSource messageSource, Long collectionId, Long businessId, String locale) Validating collection and business idMethods in com.skava.helper with parameters of type CollectionEntityModifier and TypeMethodDescriptionstatic void
CollectionUtil.checkCollectionNameExists
(CollectionRepository collectionRepository, CollectionEntity collection, org.springframework.context.MessageSource messageSource, String locale) static Set<CollectionPropertyEntity>
CollectionUtil.getCollectionProperties
(CollectionEntity collection, List<CollectionProperty> requestProperties, List<CollectionAttributeEntity> attributes, CommonServices commonServices, String locale) Used to get collection properties.static Set<CollectionPropertyEntity>
CollectionUtil.getUpdatedCollectionProperties
(CollectionEntity collection, List<CollectionProperty> requestProperties, List<CollectionAttributeEntity> attributes, org.springframework.context.MessageSource messageSource, String locale) Getting updated collection properties -
Uses of CollectionEntity in com.skava.model.domain
Methods in com.skava.model.domain that return CollectionEntityModifier and TypeMethodDescriptionCollectionDomain.toEntity()
toEntity - Used to convertCollectionDomain
object toCollectionEntity
object.Methods in com.skava.model.domain with parameters of type CollectionEntityModifier and TypeMethodDescriptionCollectionDomain.fromEntity
(CollectionEntity collectionsEntity, String loadProperty) fromEntity - Used to convertCollectionEntity
object toCollectionDomain
object. -
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 pageRequest) findAll - To find all the collections according to the given specification.CollectionRepository.findByIdAndBusinessId
(Long collectionId, Long businessId) findByIdAndBusinessId - To find a collection for the given collectionId and businessId.CollectionRepository.findByName
(String collectionName) findByName - To find a collection for the given name.CollectionRepository.findByNameAndBusinessId
(String collectionName, Long businessId) findByNameAndBusinessId - To find a collection for the given name and businessId.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 pageRequest) findAll - To find all the collections according to the given specification. -
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)