Package com.flowable.core.content.api
Interface RenditionItemQuery
- All Superinterfaces:
org.flowable.common.engine.api.query.Query<RenditionItemQuery,RenditionItem>
- All Known Implementing Classes:
RenditionItemQueryImpl
public interface RenditionItemQuery extends org.flowable.common.engine.api.query.Query<RenditionItemQuery,RenditionItem>
-
Nested Class Summary
-
Method Summary
Modifier and Type Method Description RenditionItemQuery
contentAvailable(java.lang.Boolean contentAvailable)
Only select rendition items with content available or not.RenditionItemQuery
contentItemId(java.lang.String contentItemId)
Only select rendition items with the given id.RenditionItemQuery
contentItemIdLike(java.lang.String contentItemIdLike)
Only select rendition items with the id like the given string.RenditionItemQuery
contentItemName(java.lang.String contentItemName)
Only select rendition items with the given content item name.RenditionItemQuery
contentItemNameLike(java.lang.String contentItemNameLike)
Only select rendition items with the content item name like the given string.RenditionItemQuery
contentSize(java.lang.Long contentSize)
Only select rendition items with the given content size.RenditionItemQuery
contentStoreId(java.lang.String contentStoreId)
Only select rendition items with the given content store id.RenditionItemQuery
contentStoreIdLike(java.lang.String contentStoreIdLike)
Only select rendition items with a content store id like the given string.RenditionItemQuery
contentStoreName(java.lang.String contentStoreName)
Only select rendition items with the given content store name.RenditionItemQuery
contentStoreNameLike(java.lang.String contentStoreNameLike)
Only select rendition items with a content store name like the given string.RenditionItemQuery
createdDate(java.util.Date submittedDate)
Only select rendition items created on the given timeRenditionItemQuery
createdDateAfter(java.util.Date afterTime)
Only select rendition items created after the given timeRenditionItemQuery
createdDateBefore(java.util.Date beforeTime)
Only select rendition items created before the given timeRenditionItemQuery
id(java.lang.String id)
Only select rendition items with the given id.RenditionItemQuery
ids(java.util.Set<java.lang.String> ids)
Only select rendition items with the given ids.RenditionItemQuery
lastModifiedDate(java.util.Date lastModifiedDate)
Only select rendition items last modified on the given timeRenditionItemQuery
lastModifiedDateAfter(java.util.Date afterTime)
Only select rendition items last modified after the given timeRenditionItemQuery
lastModifiedDateBefore(java.util.Date beforeTime)
Only select rendition items last modified before the given timeRenditionItemQuery
maxContentSize(java.lang.Long maxContentSize)
Only select rendition items with the given maximum content size.RenditionItemQuery
mimeType(java.lang.String mimeType)
Only select rendition items with the given mime type.RenditionItemQuery
mimeTypeLike(java.lang.String mimeTypeLike)
Only select rendition items with a mime type like the given string.RenditionItemQuery
minContentSize(java.lang.Long minContentSize)
Only select rendition items with the given minimal content size.RenditionItemQuery
name(java.lang.String name)
Only select rendition items with the given name.RenditionItemQuery
nameLike(java.lang.String nameLike)
Only select rendition items with a name like the given string.RenditionItemQuery
orderByCreatedDate()
Order by created date (needs to be followed byQuery.asc()
orQuery.desc()
).RenditionItemQuery
orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).RenditionItemQuery
processInstanceId(java.lang.String processInstanceId)
Only select rendition items with the given process instance id.RenditionItemQuery
processInstanceIdLike(java.lang.String processInstanceIdLike)
Only select rendition items with a process instance id like the given string.RenditionItemQuery
renditionType(java.lang.String renditionType)
Only select rendition items with the give typeRenditionItemQuery
scopeId(java.lang.String scopeId)
Only select rendition items with the given scopeId.RenditionItemQuery
scopeIdLike(java.lang.String scopeIdLike)
Only select rendition items with the scope id like given string.RenditionItemQuery
scopeType(java.lang.String scopeType)
Only select rendition items with the scope type as given string.RenditionItemQuery
scopeTypeLike(java.lang.String scopeTypeLike)
Only select rendition items with the scope type like given string.RenditionItemQuery
taskId(java.lang.String taskId)
Only select rendition items with the given task id.RenditionItemQuery
taskIdLike(java.lang.String taskIdLike)
Only select rendition items with a task id like the given string.RenditionItemQuery
tenantId(java.lang.String tenantId)
Only select rendition items that have the given tenant id.RenditionItemQuery
tenantIdLike(java.lang.String tenantIdLike)
Only select rendition items with a tenant id like the given one.RenditionItemQuery
withoutTenantId()
Only select rendition items that do not have a tenant id.
-
Method Details
-
id
Only select rendition items with the given id. -
ids
Only select rendition items with the given ids. -
contentItemId
Only select rendition items with the given id. -
contentItemIdLike
Only select rendition items with the id like the given string. -
contentItemName
Only select rendition items with the given content item name. -
contentItemNameLike
Only select rendition items with the content item name like the given string. -
name
Only select rendition items with the given name. -
nameLike
Only select rendition items with a name like the given string. -
mimeType
Only select rendition items with the given mime type. -
mimeTypeLike
Only select rendition items with a mime type like the given string. -
taskId
Only select rendition items with the given task id. -
taskIdLike
Only select rendition items with a task id like the given string. -
scopeType
Only select rendition items with the scope type as given string. -
scopeTypeLike
Only select rendition items with the scope type like given string. -
scopeId
Only select rendition items with the given scopeId. -
scopeIdLike
Only select rendition items with the scope id like given string. -
processInstanceId
Only select rendition items with the given process instance id. -
processInstanceIdLike
Only select rendition items with a process instance id like the given string. -
contentStoreId
Only select rendition items with the given content store id. -
contentStoreIdLike
Only select rendition items with a content store id like the given string. -
contentStoreName
Only select rendition items with the given content store name. -
contentStoreNameLike
Only select rendition items with a content store name like the given string. -
contentAvailable
Only select rendition items with content available or not. -
contentSize
Only select rendition items with the given content size. -
minContentSize
Only select rendition items with the given minimal content size. -
maxContentSize
Only select rendition items with the given maximum content size. -
createdDate
Only select rendition items created on the given time -
createdDateBefore
Only select rendition items created before the given time -
createdDateAfter
Only select rendition items created after the given time -
lastModifiedDate
Only select rendition items last modified on the given time -
lastModifiedDateBefore
Only select rendition items last modified before the given time -
lastModifiedDateAfter
Only select rendition items last modified after the given time -
tenantId
Only select rendition items that have the given tenant id. -
tenantIdLike
Only select rendition items with a tenant id like the given one. -
withoutTenantId
RenditionItemQuery withoutTenantId()Only select rendition items that do not have a tenant id. -
orderByCreatedDate
RenditionItemQuery orderByCreatedDate()Order by created date (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByTenantId
RenditionItemQuery orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
). -
renditionType
Only select rendition items with the give type
-