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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DatabaseContentObjectQuery
createdDate(Date submittedDate)
Only select rendition items created on the given timeDatabaseContentObjectQuery
createdDateAfter(Date afterTime)
Only select rendition items created after the given timeDatabaseContentObjectQuery
createdDateBefore(Date beforeTime)
Only select rendition items created before the given timeDatabaseContentObjectQuery
id(String id)
Only select rendition items with the given id.DatabaseContentObjectQuery
ids(Set<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 Detail
-
id
DatabaseContentObjectQuery id(String id)
Only select rendition items with the given id.
-
ids
DatabaseContentObjectQuery ids(Set<String> ids)
Only select rendition items with the given ids.
-
createdDate
DatabaseContentObjectQuery createdDate(Date submittedDate)
Only select rendition items created on the given time
-
createdDateBefore
DatabaseContentObjectQuery createdDateBefore(Date beforeTime)
Only select rendition items created before the given time
-
createdDateAfter
DatabaseContentObjectQuery createdDateAfter(Date afterTime)
Only select rendition items created after the given time
-
orderByCreatedDate
DatabaseContentObjectQuery orderByCreatedDate()
Order by created date (needs to be followed byQuery.asc()
orQuery.desc()
).
-
-