public interface TaskEventQueryBuilder extends ProcessInstanceIdQueryBuilder<TaskEventQueryBuilder,TaskEvent>
Modifier and Type | Interface and Description |
---|---|
static class |
TaskEventQueryBuilder.OrderBy |
Modifier and Type | Method and Description |
---|---|
TaskEventQueryBuilder |
ascending(TaskEventQueryBuilder.OrderBy field)
Specify which field to use when ordering the results, in ascending order.
|
TaskEventQueryBuilder |
descending(TaskEventQueryBuilder.OrderBy field)
Specify which field to use when ordering the results, in descending order.
|
TaskEventQueryBuilder |
id(long... id)
Specify one or more task event ids to use as a criteria
|
TaskEventQueryBuilder |
logTime(Date... logTime)
Specify one or more dates to use as a criteria
for the log (creation) date of the task event
|
TaskEventQueryBuilder |
logTimeRange(Date logTimeMin,
Date logTimeMax)
Specify an inclusive range of log dates 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
|
TaskEventQueryBuilder |
message(String... message)
Specify one or more messages to use as a criteria.
|
TaskEventQueryBuilder |
taskId(long... taskId)
Specify one or more task instance ids to use as a criteria.
|
TaskEventQueryBuilder |
taskIdRange(Long taskIdMin,
Long taskIdMax)
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
|
TaskEventQueryBuilder |
type(TaskEvent.TaskEventType... taskEventType)
Specify one or more task event types to use as a criteria
|
TaskEventQueryBuilder |
userId(String... userId)
Specify one or more user ids to use as a criteria
|
TaskEventQueryBuilder |
workItemId(long... workItemId)
Specify one or more (task-related) work item ids to use as a criteria.
|
processInstanceId, processInstanceIdRange
build, endGroup, newGroup
clear, equals, intersect, like, maxResults, offset, union
TaskEventQueryBuilder message(String... message)
message
- one or more stringsTaskEventQueryBuilder taskId(long... taskId)
taskId
- one or more task idsTaskEventQueryBuilder taskIdRange(Long taskIdMin, Long taskIdMax)
taskIdMin
- the minimal (lower) taskId to use in the rangetaskIdMax
- the max (upper) taskId to use in the rangeTaskEventQueryBuilder id(long... id)
id
- one or more task event entity idsTaskEventQueryBuilder logTime(Date... logTime)
logTime
- one or more datesTaskEventQueryBuilder logTimeRange(Date logTimeMin, Date logTimeMax)
logTimeMin
- the minimal (lower) date to use in the rangelogTimeMax
- the max (upper) date to use in the rangeTaskEventQueryBuilder userId(String... userId)
userId
- one or more (string) user idsTaskEventQueryBuilder type(TaskEvent.TaskEventType... taskEventType)
taskEventType
- one or more TaskEvent.TaskEventType
sTaskEventQueryBuilder workItemId(long... workItemId)
workItemId
- one or more long work item idsTaskEventQueryBuilder ascending(TaskEventQueryBuilder.OrderBy field)
field
- the field by which the query results should be orderedTaskEventQueryBuilder descending(TaskEventQueryBuilder.OrderBy field)
field
- the field by which the query results should be orderedCopyright © 2001–2016 JBoss by Red Hat. All rights reserved.