public interface ActivityInstanceQuery extends Query<ActivityInstanceQuery,ActivityInstance>
ActivityInstances.Query.NullHandlingOnOrder| Modifier and Type | Method and Description |
|---|---|
ActivityInstanceQuery |
activityId(String activityId)
Only select activity instances for the given activity (id from BPMN 2.0 XML)
|
ActivityInstanceQuery |
activityInstanceId(String activityInstanceId)
Only select activity instances with the given id (primary key within history tables).
|
ActivityInstanceQuery |
activityName(String activityName)
Only select activity instances for activities with the given name
|
ActivityInstanceQuery |
activityTenantId(String tenantId)
Only select activity instances that have the given tenant id.
|
ActivityInstanceQuery |
activityTenantIdLike(String tenantIdLike)
Only select activity instances with a tenant id like the given one.
|
ActivityInstanceQuery |
activityType(String activityType)
Only select activity instances for activities with the given activity type
|
ActivityInstanceQuery |
activityWithoutTenantId()
Only select activity instances that do not have a tenant id.
|
ActivityInstanceQuery |
deleteReason(String deleteReason)
Only select activity instances with a specific delete reason.
|
ActivityInstanceQuery |
deleteReasonLike(String deleteReasonLike)
Only select activity instances with a delete reason that matches the provided parameter.
|
ActivityInstanceQuery |
executionId(String executionId)
Only select activity instances for the given execution
|
ActivityInstanceQuery |
finished()
Only select activity instances that are finished.
|
ActivityInstanceQuery |
orderByActivityId()
Order by activityId (needs to be followed by
Query.asc() or Query.desc()). |
ActivityInstanceQuery |
orderByActivityInstanceDuration()
Order by duration (needs to be followed by
Query.asc() or Query.desc()). |
ActivityInstanceQuery |
orderByActivityInstanceEndTime()
Order by end (needs to be followed by
Query.asc() or Query.desc()). |
ActivityInstanceQuery |
orderByActivityInstanceId()
Order by id (needs to be followed by
Query.asc() or Query.desc()). |
ActivityInstanceQuery |
orderByActivityInstanceStartTime()
Order by start (needs to be followed by
Query.asc() or Query.desc() ). |
ActivityInstanceQuery |
orderByActivityName()
Order by activityName (needs to be followed by
Query.asc() or Query.desc()). |
ActivityInstanceQuery |
orderByActivityType()
Order by activityType (needs to be followed by
Query.asc() or Query.desc()). |
ActivityInstanceQuery |
orderByExecutionId()
Order by executionId (needs to be followed by
Query.asc() or Query.desc()). |
ActivityInstanceQuery |
orderByProcessDefinitionId()
Order by processDefinitionId (needs to be followed by
Query.asc() or Query.desc()). |
ActivityInstanceQuery |
orderByProcessInstanceId()
Order by processInstanceId (needs to be followed by
Query.asc() or Query.desc()). |
ActivityInstanceQuery |
orderByTenantId()
Order by tenant id (needs to be followed by
Query.asc() or Query.desc()). |
ActivityInstanceQuery |
processDefinitionId(String processDefinitionId)
Only select activity instances for the given process definition
|
ActivityInstanceQuery |
processInstanceId(String processInstanceId)
Only select activity instances with the given process instance.
|
ActivityInstanceQuery |
taskAssignee(String userId)
Only select activity instances for userTask activities assigned to the given user
|
ActivityInstanceQuery |
unfinished()
Only select activity instances that are not finished yet.
|
ActivityInstanceQuery activityInstanceId(String activityInstanceId)
ActivityInstanceQuery processInstanceId(String processInstanceId)
ProcessInstance ids and ActivityInstance.getProcessInstanceId() ids match.ActivityInstanceQuery processDefinitionId(String processDefinitionId)
ActivityInstanceQuery executionId(String executionId)
ActivityInstanceQuery activityId(String activityId)
ActivityInstanceQuery activityName(String activityName)
ActivityInstanceQuery activityType(String activityType)
ActivityInstanceQuery taskAssignee(String userId)
ActivityInstanceQuery finished()
ActivityInstanceQuery unfinished()
ActivityInstanceQuery deleteReason(String deleteReason)
ActivityInstanceQuery deleteReasonLike(String deleteReasonLike)
ActivityInstanceQuery activityTenantId(String tenantId)
ActivityInstanceQuery activityTenantIdLike(String tenantIdLike)
ActivityInstanceQuery activityWithoutTenantId()
ActivityInstanceQuery orderByActivityInstanceId()
Query.asc() or Query.desc()).ActivityInstanceQuery orderByProcessInstanceId()
Query.asc() or Query.desc()).ActivityInstanceQuery orderByExecutionId()
Query.asc() or Query.desc()).ActivityInstanceQuery orderByActivityId()
Query.asc() or Query.desc()).ActivityInstanceQuery orderByActivityName()
Query.asc() or Query.desc()).ActivityInstanceQuery orderByActivityType()
Query.asc() or Query.desc()).ActivityInstanceQuery orderByActivityInstanceStartTime()
Query.asc() or Query.desc() ).ActivityInstanceQuery orderByActivityInstanceEndTime()
Query.asc() or Query.desc()).ActivityInstanceQuery orderByActivityInstanceDuration()
Query.asc() or Query.desc()).ActivityInstanceQuery orderByProcessDefinitionId()
Query.asc() or Query.desc()).ActivityInstanceQuery orderByTenantId()
Query.asc() or Query.desc()).Copyright © 2020 Flowable. All rights reserved.