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 DatabaseContentObjectQuerycreatedDate(java.util.Date submittedDate)Only select rendition items created on the given timeDatabaseContentObjectQuerycreatedDateAfter(java.util.Date afterTime)Only select rendition items created after the given timeDatabaseContentObjectQuerycreatedDateBefore(java.util.Date beforeTime)Only select rendition items created before the given timeDatabaseContentObjectQueryid(java.lang.String id)Only select rendition items with the given id.DatabaseContentObjectQueryids(java.util.Set<java.lang.String> ids)Only select rendition items with the given ids.DatabaseContentObjectQueryorderByCreatedDate()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()).
-