Interface ContentItemEntityManager
- All Superinterfaces:
org.flowable.common.engine.impl.persistence.entity.EntityManager<ContentItemEntity>
- All Known Implementing Classes:
ContentItemEntityManagerImpl
public interface ContentItemEntityManager extends org.flowable.common.engine.impl.persistence.entity.EntityManager<ContentItemEntity>
- Author:
- Joram Barrez
-
Method Summary
Modifier and Type Method Description void
deleteContentItemsByProcessInstanceId(java.lang.String processInstanceId)
void
deleteContentItemsByScopeIdAndScopeType(java.lang.String scopeId, java.lang.String scopeType)
void
deleteContentItemsByTaskId(java.lang.String taskId)
void
deleteContentItemsByVersionParentId(java.lang.String versionParentId)
long
findContentItemCountByQueryCriteria(ContentItemQueryImpl contentItemQuery)
java.util.List<CoreContentItem>
findContentItemsByProcessInstanceId(java.lang.String processInstanceId)
java.util.List<org.flowable.content.api.ContentItem>
findContentItemsByQueryCriteria(ContentItemQueryImpl contentItemQuery)
java.util.List<CoreContentItem>
findContentItemsByScopeIdAndType(java.lang.String scopeId, java.lang.String scopeType)
java.util.List<CoreContentItem>
findContentItemsByTaskId(java.lang.String taskId)
long
findCoreContentItemCountByQueryCriteria(CoreContentItemQueryImpl contentItemQuery)
java.util.List<CoreContentItem>
findCoreContentItemsByQueryCriteria(CoreContentItemQueryImpl contentItemQuery)
-
Method Details
-
findContentItemsByTaskId
-
findContentItemsByProcessInstanceId
java.util.List<CoreContentItem> findContentItemsByProcessInstanceId(java.lang.String processInstanceId) -
findContentItemsByScopeIdAndType
java.util.List<CoreContentItem> findContentItemsByScopeIdAndType(java.lang.String scopeId, java.lang.String scopeType) -
findContentItemsByQueryCriteria
java.util.List<org.flowable.content.api.ContentItem> findContentItemsByQueryCriteria(ContentItemQueryImpl contentItemQuery) -
findContentItemCountByQueryCriteria
-
findCoreContentItemsByQueryCriteria
java.util.List<CoreContentItem> findCoreContentItemsByQueryCriteria(CoreContentItemQueryImpl contentItemQuery) -
findCoreContentItemCountByQueryCriteria
-
deleteContentItemsByTaskId
void deleteContentItemsByTaskId(java.lang.String taskId) -
deleteContentItemsByProcessInstanceId
void deleteContentItemsByProcessInstanceId(java.lang.String processInstanceId) -
deleteContentItemsByScopeIdAndScopeType
void deleteContentItemsByScopeIdAndScopeType(java.lang.String scopeId, java.lang.String scopeType) -
deleteContentItemsByVersionParentId
void deleteContentItemsByVersionParentId(java.lang.String versionParentId)
-