Package org.kie.internal.task.query
Interface TaskAuditQueryBuilder<T,R>
- All Superinterfaces:
ExtendedParametrizedQueryBuilder<T,,R> ParametrizedQueryBuilder<T>,ProcessInstanceIdQueryBuilder<T,R>
- All Known Subinterfaces:
AuditTaskQueryBuilder
-
Method Summary
Modifier and TypeMethodDescriptionid(long... id) Specify one or more task event ids to use as a criteriataskId(long... taskId) Specify one or more task instance ids to use as a criteria.taskIdRange(Long taskIdMin, Long taskIdMax) Specify an inclusive range of task ids to use as a criteriaMethods inherited from interface org.kie.internal.query.ExtendedParametrizedQueryBuilder
build, endGroup, newGroupMethods inherited from interface org.kie.internal.query.ParametrizedQueryBuilder
and, clear, equals, intersect, like, maxResults, offset, or, regex, unionMethods inherited from interface org.kie.internal.query.ProcessInstanceIdQueryBuilder
processInstanceId, processInstanceIdRange
-
Method Details
-
taskId
Specify one or more task instance ids to use as a criteria.- Parameters:
taskId- one or more task ids- Returns:
- The current query builder instance
-
taskIdRange
Specify an inclusive range of task ids to use as a criteria If the lower or upper end of the range is given as null, then an open-ended range using the non-null range end is used as the criteria- Parameters:
taskIdMin- the minimal (lower) taskId to use in the rangetaskIdMax- the max (upper) taskId to use in the range- Returns:
- The current query builder instance
-
id
Specify one or more task event ids to use as a criteria- Parameters:
id- one or more task event entity ids- Returns:
- The current query builder instance
-