Package com.flowable.core.content.api
Interface RenditionItemQuery
-
- All Superinterfaces:
Query<RenditionItemQuery,RenditionItem>
- All Known Implementing Classes:
RenditionItemQueryImpl
public interface RenditionItemQuery extends Query<RenditionItemQuery,RenditionItem>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
Query.NullHandlingOnOrder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RenditionItemQuery
contentAvailable(Boolean contentAvailable)
Only select rendition items with content available or not.RenditionItemQuery
contentItemId(String contentItemId)
Only select rendition items with the given id.RenditionItemQuery
contentItemIdLike(String contentItemIdLike)
Only select rendition items with the id like the given string.RenditionItemQuery
contentItemName(String contentItemName)
Only select rendition items with the given content item name.RenditionItemQuery
contentItemNameLike(String contentItemNameLike)
Only select rendition items with the content item name like the given string.RenditionItemQuery
contentSize(Long contentSize)
Only select rendition items with the given content size.RenditionItemQuery
contentStoreId(String contentStoreId)
Only select rendition items with the given content store id.RenditionItemQuery
contentStoreIdLike(String contentStoreIdLike)
Only select rendition items with a content store id like the given string.RenditionItemQuery
contentStoreName(String contentStoreName)
Only select rendition items with the given content store name.RenditionItemQuery
contentStoreNameLike(String contentStoreNameLike)
Only select rendition items with a content store name like the given string.RenditionItemQuery
createdDate(Date submittedDate)
Only select rendition items created on the given timeRenditionItemQuery
createdDateAfter(Date afterTime)
Only select rendition items created after the given timeRenditionItemQuery
createdDateBefore(Date beforeTime)
Only select rendition items created before the given timeRenditionItemQuery
id(String id)
Only select rendition items with the given id.RenditionItemQuery
ids(Set<String> ids)
Only select rendition items with the given ids.RenditionItemQuery
lastModifiedDate(Date lastModifiedDate)
Only select rendition items last modified on the given timeRenditionItemQuery
lastModifiedDateAfter(Date afterTime)
Only select rendition items last modified after the given timeRenditionItemQuery
lastModifiedDateBefore(Date beforeTime)
Only select rendition items last modified before the given timeRenditionItemQuery
maxContentSize(Long maxContentSize)
Only select rendition items with the given maximum content size.RenditionItemQuery
mimeType(String mimeType)
Only select rendition items with the given mime type.RenditionItemQuery
mimeTypeLike(String mimeTypeLike)
Only select rendition items with a mime type like the given string.RenditionItemQuery
minContentSize(Long minContentSize)
Only select rendition items with the given minimal content size.RenditionItemQuery
name(String name)
Only select rendition items with the given name.RenditionItemQuery
nameLike(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(String processInstanceId)
Only select rendition items with the given process instance id.RenditionItemQuery
processInstanceIdLike(String processInstanceIdLike)
Only select rendition items with a process instance id like the given string.RenditionItemQuery
renditionType(String renditionType)
Only select rendition items with the give typeRenditionItemQuery
scopeId(String scopeId)
Only select rendition items with the given scopeId.RenditionItemQuery
scopeIdLike(String scopeIdLike)
Only select rendition items with the scope id like given string.RenditionItemQuery
scopeType(String scopeType)
Only select rendition items with the scope type as given string.RenditionItemQuery
scopeTypeLike(String scopeTypeLike)
Only select rendition items with the scope type like given string.RenditionItemQuery
taskId(String taskId)
Only select rendition items with the given task id.RenditionItemQuery
taskIdLike(String taskIdLike)
Only select rendition items with a task id like the given string.RenditionItemQuery
tenantId(String tenantId)
Only select rendition items that have the given tenant id.RenditionItemQuery
tenantIdLike(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 Detail
-
id
RenditionItemQuery id(String id)
Only select rendition items with the given id.
-
ids
RenditionItemQuery ids(Set<String> ids)
Only select rendition items with the given ids.
-
contentItemId
RenditionItemQuery contentItemId(String contentItemId)
Only select rendition items with the given id.
-
contentItemIdLike
RenditionItemQuery contentItemIdLike(String contentItemIdLike)
Only select rendition items with the id like the given string.
-
contentItemName
RenditionItemQuery contentItemName(String contentItemName)
Only select rendition items with the given content item name.
-
contentItemNameLike
RenditionItemQuery contentItemNameLike(String contentItemNameLike)
Only select rendition items with the content item name like the given string.
-
name
RenditionItemQuery name(String name)
Only select rendition items with the given name.
-
nameLike
RenditionItemQuery nameLike(String nameLike)
Only select rendition items with a name like the given string.
-
mimeType
RenditionItemQuery mimeType(String mimeType)
Only select rendition items with the given mime type.
-
mimeTypeLike
RenditionItemQuery mimeTypeLike(String mimeTypeLike)
Only select rendition items with a mime type like the given string.
-
taskId
RenditionItemQuery taskId(String taskId)
Only select rendition items with the given task id.
-
taskIdLike
RenditionItemQuery taskIdLike(String taskIdLike)
Only select rendition items with a task id like the given string.
-
scopeType
RenditionItemQuery scopeType(String scopeType)
Only select rendition items with the scope type as given string.
-
scopeTypeLike
RenditionItemQuery scopeTypeLike(String scopeTypeLike)
Only select rendition items with the scope type like given string.
-
scopeId
RenditionItemQuery scopeId(String scopeId)
Only select rendition items with the given scopeId.
-
scopeIdLike
RenditionItemQuery scopeIdLike(String scopeIdLike)
Only select rendition items with the scope id like given string.
-
processInstanceId
RenditionItemQuery processInstanceId(String processInstanceId)
Only select rendition items with the given process instance id.
-
processInstanceIdLike
RenditionItemQuery processInstanceIdLike(String processInstanceIdLike)
Only select rendition items with a process instance id like the given string.
-
contentStoreId
RenditionItemQuery contentStoreId(String contentStoreId)
Only select rendition items with the given content store id.
-
contentStoreIdLike
RenditionItemQuery contentStoreIdLike(String contentStoreIdLike)
Only select rendition items with a content store id like the given string.
-
contentStoreName
RenditionItemQuery contentStoreName(String contentStoreName)
Only select rendition items with the given content store name.
-
contentStoreNameLike
RenditionItemQuery contentStoreNameLike(String contentStoreNameLike)
Only select rendition items with a content store name like the given string.
-
contentAvailable
RenditionItemQuery contentAvailable(Boolean contentAvailable)
Only select rendition items with content available or not.
-
contentSize
RenditionItemQuery contentSize(Long contentSize)
Only select rendition items with the given content size.
-
minContentSize
RenditionItemQuery minContentSize(Long minContentSize)
Only select rendition items with the given minimal content size.
-
maxContentSize
RenditionItemQuery maxContentSize(Long maxContentSize)
Only select rendition items with the given maximum content size.
-
createdDate
RenditionItemQuery createdDate(Date submittedDate)
Only select rendition items created on the given time
-
createdDateBefore
RenditionItemQuery createdDateBefore(Date beforeTime)
Only select rendition items created before the given time
-
createdDateAfter
RenditionItemQuery createdDateAfter(Date afterTime)
Only select rendition items created after the given time
-
lastModifiedDate
RenditionItemQuery lastModifiedDate(Date lastModifiedDate)
Only select rendition items last modified on the given time
-
lastModifiedDateBefore
RenditionItemQuery lastModifiedDateBefore(Date beforeTime)
Only select rendition items last modified before the given time
-
lastModifiedDateAfter
RenditionItemQuery lastModifiedDateAfter(Date afterTime)
Only select rendition items last modified after the given time
-
tenantId
RenditionItemQuery tenantId(String tenantId)
Only select rendition items that have the given tenant id.
-
tenantIdLike
RenditionItemQuery tenantIdLike(String 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
RenditionItemQuery renditionType(String renditionType)
Only select rendition items with the give type
-
-