ExecutionQuery |
ExecutionQuery.active() |
Only selects executions which are active (i.e.
|
ExecutionQuery |
ExecutionQuery.activityId(java.lang.String activityId) |
Only select executions which contain an activity with the given id.
|
ExecutionQuery |
ExecutionQuery.executionId(java.lang.String executionId) |
Only select executions with the given id.
|
ExecutionQuery |
ExecutionQuery.incidentId(java.lang.String incidentId) |
Only selects executions with the given incident id.
|
ExecutionQuery |
ExecutionQuery.incidentMessage(java.lang.String incidentMessage) |
Only selects executions with the given incident message.
|
ExecutionQuery |
ExecutionQuery.incidentMessageLike(java.lang.String incidentMessageLike) |
Only selects executions with an incident message like the given.
|
ExecutionQuery |
ExecutionQuery.incidentType(java.lang.String incidentType) |
Only selects executions with the given incident type.
|
ExecutionQuery |
ExecutionQuery.matchVariableNamesIgnoreCase() |
The query will match the names of variables in a case-insensitive way.
|
ExecutionQuery |
ExecutionQuery.matchVariableValuesIgnoreCase() |
The query will match the values of variables in a case-insensitive way.
|
ExecutionQuery |
ExecutionQuery.messageEventSubscription() |
Only select executions that have a message event subscription.
|
ExecutionQuery |
ExecutionQuery.messageEventSubscriptionName(java.lang.String messageName) |
Only select executions which have a message event subscription
for the given messageName.
|
ExecutionQuery |
ExecutionQuery.orderByProcessDefinitionId() |
|
ExecutionQuery |
ExecutionQuery.orderByProcessDefinitionKey() |
|
ExecutionQuery |
ExecutionQuery.orderByProcessInstanceId() |
|
ExecutionQuery |
ExecutionQuery.orderByTenantId() |
|
ExecutionQuery |
ExecutionQuery.processDefinitionId(java.lang.String processDefinitionId) |
Only select executions which have the given process definition id.
|
ExecutionQuery |
ExecutionQuery.processDefinitionKey(java.lang.String processDefinitionKey) |
Only select executions which have the given process definition key.
|
ExecutionQuery |
ExecutionQuery.processInstanceBusinessKey(java.lang.String processInstanceBusinessKey) |
Only select executions that belong to a process instance with the given business key
|
ExecutionQuery |
ExecutionQuery.processInstanceId(java.lang.String processInstanceId) |
Only select executions which have the given process instance id.
|
ExecutionQuery |
ExecutionQuery.processVariableValueEquals(java.lang.String variableName,
java.lang.Object variableValue) |
Only select executions which are part of a process that have a variable
with the given name set to the given value.
|
ExecutionQuery |
ExecutionQuery.processVariableValueNotEquals(java.lang.String variableName,
java.lang.Object variableValue) |
Only select executions which are part of a process that have a variable with the given name, but
with a different value than the passed value.
|
ExecutionQuery |
ExecutionQuery.signalEventSubscription(java.lang.String signalName) |
Deprecated.
|
ExecutionQuery |
ExecutionQuery.signalEventSubscriptionName(java.lang.String signalName) |
Only select executions which have a signal event subscription
for the given signal name.
|
ExecutionQuery |
ExecutionQuery.suspended() |
Only selects executions which are suspended, because their process instance is suspended.
|
ExecutionQuery |
ExecutionQuery.tenantIdIn(java.lang.String... tenantIds) |
Only selects executions with one of the given tenant ids.
|
ExecutionQuery |
ExecutionQuery.variableValueEquals(java.lang.String name,
java.lang.Object value) |
Only select executions which have a local variable with the given value.
|
ExecutionQuery |
ExecutionQuery.variableValueGreaterThan(java.lang.String name,
java.lang.Object value) |
Only select executions which have a local variable value greater than the passed value.
|
ExecutionQuery |
ExecutionQuery.variableValueGreaterThanOrEqual(java.lang.String name,
java.lang.Object value) |
Only select executions which have a local variable value greater than or equal to
the passed value.
|
ExecutionQuery |
ExecutionQuery.variableValueLessThan(java.lang.String name,
java.lang.Object value) |
Only select executions which have a local variable value less than the passed value.
|
ExecutionQuery |
ExecutionQuery.variableValueLessThanOrEqual(java.lang.String name,
java.lang.Object value) |
Only select executions which have a local variable value less than or equal to the passed value.
|
ExecutionQuery |
ExecutionQuery.variableValueLike(java.lang.String name,
java.lang.String value) |
Only select executions which have a local variable value like the given value.
|
ExecutionQuery |
ExecutionQuery.variableValueNotEquals(java.lang.String name,
java.lang.Object value) |
Only select executions which have a local variable with the given name, but
with a different value than the passed value.
|
ExecutionQuery |
ExecutionQuery.withoutTenantId() |
Only selects executions which have no tenant id.
|