Interface ExecutionQuery
- All Superinterfaces:
Query<ExecutionQuery,Execution>
- All Known Implementing Classes:
ExecutionQueryImpl
Executions.-
Method Summary
Modifier and TypeMethodDescriptionactivityId(String activityId) Only select executions which contain an activity with the given id.executionId(String executionId) Only select executions with the given id.executionTenantId(String tenantId) Only select process instances that have the given tenant id.executionTenantIdLike(String tenantIdLike) Only select process instances with a tenant id like the given one.Only select process instances that do not have a tenant id.Localize execution name and description to specified locale.messageEventSubscriptionName(String messageName) Only select executions which have a message event subscription for the given messageName.Only selects executions that have a parent id set, ie non-processinstance executions.Only selects executions that have no parent id set, ie process instance executionsOnly selects executions that are a subprocess.Order by process definition id (needs to be followed byQuery.asc()orQuery.desc()).Order by process definition key (needs to be followed byQuery.asc()orQuery.desc()).Order by id (needs to be followed byQuery.asc()orQuery.desc()).Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()).Only select executions which are a direct child-execution of the execution with the given id.processDefinitionCategory(String processDefinitionCategory) Only select executions which have the given process definition category.processDefinitionId(String processDefinitionId) Only select executions which have the given process definition id.processDefinitionKey(String processDefinitionKey) Only select executions which have the given process definition key.processDefinitionKeys(Set<String> processDefinitionKeys) Only select executions which have process definitions with the given keys.processDefinitionName(String processDefinitionName) Only select executions which have the given process definition name.processDefinitionVersion(Integer processDefinitionVersion) Only select executions which have the given process definition version.processInstanceBusinessKey(String processInstanceBusinessKey) Only executions with the given business key.processInstanceBusinessKey(String processInstanceBusinessKey, boolean includeChildExecutions) Only executions with the given business key.processInstanceId(String processInstanceId) Only select executions which have the given process instance id.processVariableValueEquals(Object variableValue) Only select executions which are part of a process that have at least one variable with the given value.processVariableValueEquals(String variableName, Object variableValue) Only select executions which are part of a process that have a variable with the given name set to the given value.processVariableValueEqualsIgnoreCase(String name, String value) Only select executions which are part of a process that have a local string variable with the given value, case insensitive.processVariableValueLike(String name, String value) Only select executions which are part of a process that have at least one variable like the given value.processVariableValueLikeIgnoreCase(String name, String value) Only select executions which are part of a process that have at least one variable like the given value (case insensitive).processVariableValueNotEquals(String variableName, 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.processVariableValueNotEqualsIgnoreCase(String name, 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.rootProcessInstanceId(String rootProcessInstanceId) Only select executions which have the given root process instance id.signalEventSubscriptionName(String signalName) Only select executions which have a signal event subscription for the given signal name.startedAfter(Date afterTime) Only select executions that were started after the given start time.startedBefore(Date beforeTime) Only select executions that were started before the given start time.Only select executions that were started after by the given user id.variableValueEquals(Object value) Only select executions which have at least one local variable with the given value.variableValueEquals(String name, Object value) Only select executions which have a local variable with the given value.variableValueEqualsIgnoreCase(String name, String value) Only select executions which have a local string variable with the given value, case insensitive.variableValueGreaterThan(String name, Object value) Only select executions which have a local variable value greater than the passed value.variableValueGreaterThanOrEqual(String name, Object value) Only select executions which have a local variable value greater than or equal to the passed value.variableValueLessThan(String name, Object value) Only select executions which have a local variable value less than the passed value.variableValueLessThanOrEqual(String name, Object value) Only select executions which have a local variable value less than or equal to the passed value.variableValueLike(String name, String value) Only select executions which have a local variable value like the given value.variableValueLikeIgnoreCase(String name, String value) Only select executions which have a local variable value like the given value (case insensitive).variableValueNotEquals(String name, Object value) Only select executions which have a local variable with the given name, but with a different value than the passed value.variableValueNotEqualsIgnoreCase(String name, String value) Only select executions which have a local string variable which is not the given value, case insensitive.Instruct localization to fallback to more general locales including the default locale of the JVM if the specified locale is not found.
-
Method Details
-
processDefinitionKey
Only select executions which have the given process definition key. -
processDefinitionKeys
Only select executions which have process definitions with the given keys. -
processDefinitionId
Only select executions which have the given process definition id. -
processDefinitionCategory
Only select executions which have the given process definition category. -
processDefinitionName
Only select executions which have the given process definition name. -
processDefinitionVersion
Only select executions which have the given process definition version. Particulary useful when used in combination withprocessDefinitionKey(String) -
processInstanceId
Only select executions which have the given process instance id. -
rootProcessInstanceId
Only select executions which have the given root process instance id. -
processInstanceBusinessKey
Only executions with the given business key. Note that only process instances have a business key and as such, child executions will NOT be returned. If you want to return child executions of the process instance with the given business key too, use theprocessInstanceBusinessKey(String, boolean)method with a boolean value of true instead. -
processInstanceBusinessKey
ExecutionQuery processInstanceBusinessKey(String processInstanceBusinessKey, boolean includeChildExecutions) Only executions with the given business key. Similar toprocessInstanceBusinessKey(String), but allows to choose whether child executions are returned or not. -
executionId
Only select executions with the given id. -
activityId
Only select executions which contain an activity with the given id. -
parentId
Only select executions which are a direct child-execution of the execution with the given id. -
onlyChildExecutions
ExecutionQuery onlyChildExecutions()Only selects executions that have a parent id set, ie non-processinstance executions. -
onlySubProcessExecutions
ExecutionQuery onlySubProcessExecutions()Only selects executions that are a subprocess. -
onlyProcessInstanceExecutions
ExecutionQuery onlyProcessInstanceExecutions()Only selects executions that have no parent id set, ie process instance executions -
executionTenantId
Only select process instances that have the given tenant id. -
executionTenantIdLike
Only select process instances with a tenant id like the given one. -
executionWithoutTenantId
ExecutionQuery executionWithoutTenantId()Only select process instances that do not have a tenant id. -
variableValueEquals
Only select executions which have a local variable with the given value. The type of variable is determined based on the value, using types configured inProcessEngineConfiguration#getVariableTypes(). Byte-arrays andSerializableobjects (which are not primitive type wrappers) are not supported.- Parameters:
name- name of the variable, cannot be null.
-
variableValueEqualsIgnoreCase
Only select executions which have a local string variable with the given value, case insensitive.This method only works if your database has encoding/collation that supports case-sensitive queries. For example, use "collate UTF-8" on MySQL and for MSSQL, select one of the case-sensitive Collations available (MSDN Server Collation Reference).
- Parameters:
name- name of the variable, cannot be null.value- value of the variable, cannot be null.
-
variableValueEquals
Only select executions which have at least one local variable with the given value. The type of variable is determined based on the value, using types configured inProcessEngineConfiguration#getVariableTypes(). Byte-arrays andSerializableobjects (which are not primitive type wrappers) are not supported. -
variableValueNotEquals
Only select executions which have a local variable with the given name, but with a different value than the passed value. Byte-arrays andSerializableobjects (which are not primitive type wrappers) are not supported.- Parameters:
name- name of the variable, cannot be null.
-
variableValueNotEqualsIgnoreCase
Only select executions which have a local string variable which is not the given value, case insensitive.This method only works if your database has encoding/collation that supports case-sensitive queries. For example, use "collate UTF-8" on MySQL and for MSSQL, select one of the case-sensitive Collations available (MSDN Server Collation Reference).
- Parameters:
name- name of the variable, cannot be null.value- value of the variable, cannot be null.
-
variableValueGreaterThan
Only select executions which have a local variable value greater than the passed value. Booleans, Byte-arrays andSerializableobjects (which are not primitive type wrappers) are not supported.- Parameters:
name- variable name, cannot be null.value- variable value, cannot be null.
-
variableValueGreaterThanOrEqual
Only select executions which have a local variable value greater than or equal to the passed value. Booleans, Byte-arrays andSerializableobjects (which are not primitive type wrappers) are not supported.- Parameters:
name- variable name, cannot be null.value- variable value, cannot be null.
-
variableValueLessThan
Only select executions which have a local variable value less than the passed value. Booleans, Byte-arrays andSerializableobjects (which are not primitive type wrappers) are not supported.- Parameters:
name- variable name, cannot be null.value- variable value, cannot be null.
-
variableValueLessThanOrEqual
Only select executions which have a local variable value less than or equal to the passed value. Booleans, Byte-arrays andSerializableobjects (which are not primitive type wrappers) are not supported.- Parameters:
name- variable name, cannot be null.value- variable value, cannot be null.
-
variableValueLike
Only select executions which have a local variable value like the given value. This be used on string variables only.- Parameters:
name- variable name, cannot be null.value- variable value, cannot be null. The string can include the wildcard character '%' to express like-strategy: starts with (string%), ends with (%string) or contains (%string%).
-
variableValueLikeIgnoreCase
Only select executions which have a local variable value like the given value (case insensitive). This be used on string variables only.- Parameters:
name- variable name, cannot be null.value- variable value, cannot be null. The string can include the wildcard character '%' to express like-strategy: starts with (string%), ends with (%string) or contains (%string%).
-
processVariableValueEquals
Only select executions which are part of a process that have a variable with the given name set to the given value. Byte-arrays andSerializableobjects (which are not primitive type wrappers) are not supported. -
processVariableValueEquals
Only select executions which are part of a process that have at least one variable with the given value. Byte-arrays andSerializableobjects (which are not primitive type wrappers) are not supported. -
processVariableValueNotEquals
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. Byte-arrays andSerializableobjects (which are not primitive type wrappers) are not supported. -
processVariableValueEqualsIgnoreCase
Only select executions which are part of a process that have a local string variable with the given value, case insensitive.This method only works if your database has encoding/collation that supports case-sensitive queries. For example, use "collate UTF-8" on MySQL and for MSSQL, select one of the case-sensitive Collations available (MSDN Server Collation Reference).
- Parameters:
name- name of the variable, cannot be null.value- value of the variable, cannot be null.
-
processVariableValueNotEqualsIgnoreCase
Only select executions which are part of a process that have a local string variable which is not the given value, case insensitive.This method only works if your database has encoding/collation that supports case-sensitive queries. For example, use "collate UTF-8" on MySQL and for MSSQL, select one of the case-sensitive Collations available (MSDN Server Collation Reference).
- Parameters:
name- name of the variable, cannot be null.value- value of the variable, cannot be null.
-
processVariableValueLike
Only select executions which are part of a process that have at least one variable like the given value. Byte-arrays andSerializableobjects (which are not primitive type wrappers) are not supported. -
processVariableValueLikeIgnoreCase
Only select executions which are part of a process that have at least one variable like the given value (case insensitive). Byte-arrays andSerializableobjects (which are not primitive type wrappers) are not supported. -
signalEventSubscriptionName
Only select executions which have a signal event subscription for the given signal name. (The signalName is specified using the 'name' attribute of the signal element in the BPMN 2.0 XML.)- Parameters:
signalName- the name of the signal the execution has subscribed to
-
messageEventSubscriptionName
Only select executions which have a message event subscription for the given messageName. (The messageName is specified using the 'name' attribute of the message element in the BPMN 2.0 XML.)- Parameters:
messageName- the name of the message the execution has subscribed to
-
locale
Localize execution name and description to specified locale. -
withLocalizationFallback
ExecutionQuery withLocalizationFallback()Instruct localization to fallback to more general locales including the default locale of the JVM if the specified locale is not found. -
startedBefore
Only select executions that were started before the given start time.- Parameters:
beforeTime- executions started before this time will be returned (cannot be null)
-
startedAfter
Only select executions that were started after the given start time.- Parameters:
afterTime- executions started after this time will be returned (cannot be null)
-
startedBy
Only select executions that were started after by the given user id.- Parameters:
userId- the user id of the authenticated user that started the execution (cannot be null)
-
orderByProcessInstanceId
ExecutionQuery orderByProcessInstanceId()Order by id (needs to be followed byQuery.asc()orQuery.desc()). -
orderByProcessDefinitionKey
ExecutionQuery orderByProcessDefinitionKey()Order by process definition key (needs to be followed byQuery.asc()orQuery.desc()). -
orderByProcessDefinitionId
ExecutionQuery orderByProcessDefinitionId()Order by process definition id (needs to be followed byQuery.asc()orQuery.desc()). -
orderByTenantId
ExecutionQuery orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()).
-