Package com.flowable.core.content.api
Interface DatabaseContentObjectQuery
- All Superinterfaces:
Query<DatabaseContentObjectQuery,
DatabaseContentObject>
- All Known Implementing Classes:
DatabaseContentObjectQueryImpl
public interface DatabaseContentObjectQuery
extends Query<DatabaseContentObjectQuery,DatabaseContentObject>
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
Query.NullHandlingOnOrder
-
Method Summary
Modifier and TypeMethodDescriptioncreatedDate
(Date submittedDate) Only select rendition items created on the given timecreatedDateAfter
(Date afterTime) Only select rendition items created after the given timecreatedDateBefore
(Date beforeTime) Only select rendition items created before the given timeOnly select rendition items with the given id.Only select rendition items with the given ids.Order by created date (needs to be followed byQuery.asc()
orQuery.desc()
).
-
Method Details
-
id
Only select rendition items with the given id. -
ids
Only select rendition items with the given ids. -
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 -
orderByCreatedDate
DatabaseContentObjectQuery orderByCreatedDate()Order by created date (needs to be followed byQuery.asc()
orQuery.desc()
).
-