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.executionTenantId(java.lang.String tenantId) |
Only select process instances that have the given tenant id.
|
ExecutionQuery |
ExecutionQuery.executionTenantIdLike(java.lang.String tenantIdLike) |
Only select process instances with a tenant id like the given one.
|
ExecutionQuery |
ExecutionQuery.executionWithoutTenantId() |
Only select process instances that do not have a tenant id.
|
ExecutionQuery |
ExecutionQuery.locale(java.lang.String locale) |
Localize execution name and description to specified locale.
|
ExecutionQuery |
ExecutionQuery.messageEventSubscriptionName(java.lang.String messageName) |
Only select executions which have a message event subscription for the given messageName.
|
ExecutionQuery |
ExecutionQuery.onlyChildExecutions() |
Only selects executions that have a parent id set, ie non-processinstance executions.
|
ExecutionQuery |
ExecutionQuery.onlyProcessInstanceExecutions() |
Only selects executions that have no parent id set, ie process instance executions
|
ExecutionQuery |
ExecutionQuery.onlySubProcessExecutions() |
Only selects executions that are a subprocess.
|
ExecutionQuery |
ExecutionQuery.orderByProcessDefinitionId() |
|
ExecutionQuery |
ExecutionQuery.orderByProcessDefinitionKey() |
|
ExecutionQuery |
ExecutionQuery.orderByProcessInstanceId() |
|
ExecutionQuery |
ExecutionQuery.orderByTenantId() |
|
ExecutionQuery |
ExecutionQuery.parentId(java.lang.String parentId) |
Only select executions which are a direct child-execution of the execution with the given id.
|
ExecutionQuery |
ExecutionQuery.processDefinitionCategory(java.lang.String processDefinitionCategory) |
Only select executions which have the given process definition category.
|
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.processDefinitionKeys(java.util.Set<java.lang.String> processDefinitionKeys) |
Only select executions which have process definitions with the given keys.
|
ExecutionQuery |
ExecutionQuery.processDefinitionName(java.lang.String processDefinitionName) |
Only select executions which have the given process definition name.
|
ExecutionQuery |
ExecutionQuery.processDefinitionVersion(java.lang.Integer processDefinitionVersion) |
Only select executions which have the given process definition version.
|
ExecutionQuery |
ExecutionQuery.processInstanceBusinessKey(java.lang.String processInstanceBusinessKey) |
Only executions with the given business key.
|
ExecutionQuery |
ExecutionQuery.processInstanceBusinessKey(java.lang.String processInstanceBusinessKey,
boolean includeChildExecutions) |
Only executions 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.Object variableValue) |
Only select executions which are part of a process that have at least one variable with the given value.
|
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.processVariableValueEqualsIgnoreCase(java.lang.String name,
java.lang.String value) |
Only select executions which are part of a process that have a local string variable with the given value, case insensitive.
|
ExecutionQuery |
ExecutionQuery.processVariableValueLike(java.lang.String name,
java.lang.String value) |
Only select executions which are part of a process that have at least one variable like the given value.
|
ExecutionQuery |
ExecutionQuery.processVariableValueLikeIgnoreCase(java.lang.String name,
java.lang.String value) |
Only select executions which are part of a process that have at least one variable like the given value (case insensitive).
|
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.processVariableValueNotEqualsIgnoreCase(java.lang.String name,
java.lang.String value) |
Only select executions which are part of a process that have a local string variable which is not the given value, case insensitive.
|
ExecutionQuery |
ExecutionQuery.rootProcessInstanceId(java.lang.String rootProcessInstanceId) |
Only select executions which have the given root process instance id.
|
ExecutionQuery |
ExecutionQuery.signalEventSubscriptionName(java.lang.String signalName) |
Only select executions which have a signal event subscription for the given signal name.
|
ExecutionQuery |
ExecutionQuery.startedAfter(java.util.Date afterTime) |
Only select executions that were started after the given start time.
|
ExecutionQuery |
ExecutionQuery.startedBefore(java.util.Date beforeTime) |
Only select executions that were started before the given start time.
|
ExecutionQuery |
ExecutionQuery.startedBy(java.lang.String userId) |
Only select executions that were started after by the given user id.
|
ExecutionQuery |
ExecutionQuery.variableValueEquals(java.lang.Object value) |
Only select executions which have at least one local variable with the given value.
|
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.variableValueEqualsIgnoreCase(java.lang.String name,
java.lang.String value) |
Only select executions which have a local string variable with the given value, case insensitive.
|
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.variableValueLikeIgnoreCase(java.lang.String name,
java.lang.String value) |
Only select executions which have a local variable value like the given value (case insensitive).
|
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.variableValueNotEqualsIgnoreCase(java.lang.String name,
java.lang.String value) |
Only select executions which have a local string variable which is not the given value, case insensitive.
|
ExecutionQuery |
ExecutionQuery.withLocalizationFallback() |
Instruct localization to fallback to more general locales including the default locale of the JVM if the specified locale is not found.
|