Package com.flowable.core.content.api
Interface CoreContentItemQuery
- All Superinterfaces:
org.flowable.content.api.ContentItemBaseQuery<CoreContentItemQuery,CoreContentItem>
,org.flowable.common.engine.api.query.Query<CoreContentItemQuery,CoreContentItem>
- All Known Implementing Classes:
CoreContentItemQueryImpl
public interface CoreContentItemQuery extends org.flowable.content.api.ContentItemBaseQuery<CoreContentItemQuery,CoreContentItem>
-
Nested Class Summary
-
Method Summary
Modifier and Type Method Description CoreContentItemQuery
baseFolderId(java.lang.String baseFolderId)
Only select content items with the given folder base id.CoreContentItemQuery
definitionId(java.lang.String definitionId)
Only select content items with the given definition id.CoreContentItemQuery
isRootFolder()
Only select folder content items which are on the root level.CoreContentItemQuery
latest()
Only select content items with the latest version.CoreContentItemQuery
mimeTypeNotEquals(java.lang.String mimeTypeNotEquals)
Only select content items with a mime type that is not equal to the given mime type.CoreContentItemQuery
parentFolderId(java.lang.String parentFolderId)
Only select content items with the given folder parent id.CoreContentItemQuery
state(java.lang.String state)
Only select content items with the given state.CoreContentItemQuery
subState(java.lang.String subState)
Only select content items with the given sub state.CoreContentItemQuery
subType(java.lang.String subType)
Only select content items with the given sub type.CoreContentItemQuery
type(java.lang.String type)
Only select content items with the given type.CoreContentItemQuery
version(java.lang.Integer version)
Only select content items with the given version.CoreContentItemQuery
versionInfo(java.lang.String versionInfo)
Only select content items with the given version info.CoreContentItemQuery
versionInfoLike(java.lang.String versionInfoLike)
Only select content items with a version info like the given string.CoreContentItemQuery
versionParentId(java.lang.String versionParentId)
Only select content items with the given version parent id.Methods inherited from interface org.flowable.content.api.ContentItemBaseQuery
contentAvailable, contentSize, contentStoreId, contentStoreIdLike, contentStoreName, contentStoreNameLike, createdBy, createdByLike, createdDate, createdDateAfter, createdDateBefore, field, fieldLike, id, ids, lastModifiedBy, lastModifiedByLike, lastModifiedDate, lastModifiedDateAfter, lastModifiedDateBefore, maxContentSize, mimeType, mimeTypeLike, minContentSize, name, nameLike, orderByCreatedDate, orderByTenantId, processInstanceId, processInstanceIdLike, scopeId, scopeIdLike, scopeType, scopeTypeLike, taskId, taskIdLike, tenantId, tenantIdLike, withoutTenantId
-
Method Details
-
version
Only select content items with the given version. -
versionInfo
Only select content items with the given version info. -
versionInfoLike
Only select content items with a version info like the given string. -
versionParentId
Only select content items with the given version parent id. -
definitionId
Only select content items with the given definition id. -
type
Only select content items with the given type. -
subType
Only select content items with the given sub type. -
state
Only select content items with the given state. -
subState
Only select content items with the given sub state. -
parentFolderId
Only select content items with the given folder parent id. -
baseFolderId
Only select content items with the given folder base id. -
mimeTypeNotEquals
Only select content items with a mime type that is not equal to the given mime type. -
isRootFolder
CoreContentItemQuery isRootFolder()Only select folder content items which are on the root level. -
latest
CoreContentItemQuery latest()Only select content items with the latest version.
-