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>
-
-
Method Summary
All Methods Instance Methods Abstract Methods 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 Detail
-
id
DatabaseContentObjectQuery id(java.lang.String id)
Only select rendition items with the given id.
-
ids
DatabaseContentObjectQuery ids(java.util.Set<java.lang.String> ids)
Only select rendition items with the given ids.
-
createdDate
DatabaseContentObjectQuery createdDate(java.util.Date submittedDate)
Only select rendition items created on the given time
-
createdDateBefore
DatabaseContentObjectQuery createdDateBefore(java.util.Date beforeTime)
Only select rendition items created before the given time
-
createdDateAfter
DatabaseContentObjectQuery createdDateAfter(java.util.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()).
-
-