Package com.flowable.core.content.api
Interface CoreContentService
-
- All Superinterfaces:
org.flowable.content.api.ContentService
- All Known Implementing Classes:
ContentServiceImpl
public interface CoreContentService extends org.flowable.content.api.ContentService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CoreContentItem
copyContentItem(java.lang.String contentItemId, java.lang.String parentFolderId)
CoreContentItemQuery
createCoreContentItemQuery()
void
deleteContentItemsByVersionParentId(java.lang.String versionParentId)
java.util.List<CoreContentItem>
findContentItemsByProcessInstanceId(java.lang.String processInstanceId)
java.util.List<CoreContentItem>
findContentItemsByScopeIdAndType(java.lang.String scopeId, java.lang.String scopeType)
java.util.List<CoreContentItem>
findContentItemsByTaskId(java.lang.String taskId)
CoreContentItem
newCoreContentItem()
-
-
-
Method Detail
-
newCoreContentItem
CoreContentItem newCoreContentItem()
-
findContentItemsByTaskId
java.util.List<CoreContentItem> findContentItemsByTaskId(java.lang.String taskId)
-
findContentItemsByProcessInstanceId
java.util.List<CoreContentItem> findContentItemsByProcessInstanceId(java.lang.String processInstanceId)
-
findContentItemsByScopeIdAndType
java.util.List<CoreContentItem> findContentItemsByScopeIdAndType(java.lang.String scopeId, java.lang.String scopeType)
-
createCoreContentItemQuery
CoreContentItemQuery createCoreContentItemQuery()
-
deleteContentItemsByVersionParentId
void deleteContentItemsByVersionParentId(java.lang.String versionParentId)
-
copyContentItem
CoreContentItem copyContentItem(java.lang.String contentItemId, java.lang.String parentFolderId)
-
-