Package com.flowable.core.content.api
Interface DatabaseContentObjectQuery
- All Superinterfaces:
org.flowable.common.engine.api.query.Query<DatabaseContentObjectQuery,DatabaseContentObject>
- All Known Implementing Classes:
DatabaseContentObjectQueryImpl
public interface DatabaseContentObjectQuery extends org.flowable.common.engine.api.query.Query<DatabaseContentObjectQuery,DatabaseContentObject>
-
Nested Class Summary
-
Method Summary
Modifier and Type Method Description DatabaseContentObjectQuery
createdDate(java.util.Date submittedDate)
Only select rendition items created on the given timeDatabaseContentObjectQuery
createdDateAfter(java.util.Date afterTime)
Only select rendition items created after the given timeDatabaseContentObjectQuery
createdDateBefore(java.util.Date beforeTime)
Only select rendition items created before the given timeDatabaseContentObjectQuery
id(java.lang.String id)
Only select rendition items with the given id.DatabaseContentObjectQuery
ids(java.util.Set<java.lang.String> ids)
Only select rendition items with the given ids.DatabaseContentObjectQuery
orderByCreatedDate()
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()
).
-