Uses of Interface
org.activiti.engine.runtime.ProcessInstanceQuery
Packages that use ProcessInstanceQuery
-
Uses of ProcessInstanceQuery in org.activiti.engine
Methods in org.activiti.engine that return ProcessInstanceQueryModifier and TypeMethodDescriptionRuntimeService.createProcessInstanceQuery()Creates a newProcessInstanceQueryinstance, that can be used to query process instances. -
Uses of ProcessInstanceQuery in org.activiti.engine.impl
Classes in org.activiti.engine.impl that implement ProcessInstanceQueryMethods in org.activiti.engine.impl that return ProcessInstanceQueryModifier and TypeMethodDescriptionProcessInstanceQueryImpl.active()RuntimeServiceImpl.createProcessInstanceQuery()ProcessInstanceQueryImpl.endOr()ProcessInstanceQueryImpl.excludeSubprocesses(boolean excludeSubprocesses) ProcessInstanceQueryImpl.includeProcessVariables()ProcessInstanceQueryImpl.involvedGroupsIn(List<String> involvedGroups) ProcessInstanceQueryImpl.involvedUser(String involvedUser) ProcessInstanceQueryImpl.limitProcessInstanceVariables(Integer processInstanceVariablesLimit) ProcessInstanceQueryImpl.or()ProcessInstanceQueryImpl.orderByProcessDefinitionId()ProcessInstanceQueryImpl.orderByProcessDefinitionKey()ProcessInstanceQueryImpl.orderByProcessInstanceId()ProcessInstanceQueryImpl.orderByTenantId()ProcessInstanceQueryImpl.processDefinitionCategory(String processDefinitionCategory) ProcessInstanceQueryImpl.processDefinitionIds(Set<String> processDefinitionIds) ProcessInstanceQueryImpl.processDefinitionKeys(Set<String> processDefinitionKeys) ProcessInstanceQueryImpl.processDefinitionName(String processDefinitionName) ProcessInstanceQueryImpl.processDefinitionVersion(Integer processDefinitionVersion) ProcessInstanceQueryImpl.processInstanceBusinessKey(String businessKey) ProcessInstanceQueryImpl.processInstanceBusinessKey(String businessKey, String processDefinitionKey) ProcessInstanceQueryImpl.processInstanceIds(Set<String> processInstanceIds) ProcessInstanceQueryImpl.processInstanceName(String name) ProcessInstanceQueryImpl.processInstanceNameLike(String nameLike) ProcessInstanceQueryImpl.processInstanceNameLikeIgnoreCase(String nameLikeIgnoreCase) ProcessInstanceQueryImpl.processInstanceTenantId(String tenantId) ProcessInstanceQueryImpl.processInstanceTenantIdLike(String tenantIdLike) ProcessInstanceQueryImpl.processInstanceWithoutTenantId()ProcessInstanceQueryImpl.startedAfter(Date afterTime) ProcessInstanceQueryImpl.startedBefore(Date beforeTime) ProcessInstanceQueryImpl.subProcessInstanceId(String subProcessInstanceId) ProcessInstanceQueryImpl.superProcessInstanceId(String superProcessInstanceId) ProcessInstanceQueryImpl.suspended()ProcessInstanceQueryImpl.variableValueEquals(Object variableValue) ProcessInstanceQueryImpl.variableValueEquals(String variableName, Object variableValue) ProcessInstanceQueryImpl.variableValueEqualsIgnoreCase(String name, String value) ProcessInstanceQueryImpl.variableValueGreaterThan(String name, Object value) ProcessInstanceQueryImpl.variableValueGreaterThanOrEqual(String name, Object value) ProcessInstanceQueryImpl.variableValueLessThan(String name, Object value) ProcessInstanceQueryImpl.variableValueLessThanOrEqual(String name, Object value) ProcessInstanceQueryImpl.variableValueLike(String name, String value) ProcessInstanceQueryImpl.variableValueLikeIgnoreCase(String name, String value) ProcessInstanceQueryImpl.variableValueNotEquals(String variableName, Object variableValue) ProcessInstanceQueryImpl.variableValueNotEqualsIgnoreCase(String name, String value) ProcessInstanceQueryImpl.withJobException()ProcessInstanceQueryImpl.withLocalizationFallback() -
Uses of ProcessInstanceQuery in org.activiti.engine.runtime
Methods in org.activiti.engine.runtime that return ProcessInstanceQueryModifier and TypeMethodDescriptionProcessInstanceQuery.active()Only select process instances which are active, which means that neither the process instance nor the corresponding process definition are suspended.ProcessInstanceQuery.deploymentId(String deploymentId) Select the process instances which are defined by a deployment with the given id.ProcessInstanceQuery.deploymentIdIn(List<String> deploymentIds) Select the process instances which are defined by one of the given deployment idsProcessInstanceQuery.endOr()End an OR statement.ProcessInstanceQuery.excludeSubprocesses(boolean excludeSubprocesses) Exclude sub processes from the query result;ProcessInstanceQuery.includeProcessVariables()Include process variables in the process query resultProcessInstanceQuery.involvedGroupsIn(List<String> involvedGroups) Select the process instances with which the given groups are involved.ProcessInstanceQuery.involvedUser(String userId) Select the process instances with which the user with the given id is involved.ProcessInstanceQuery.limitProcessInstanceVariables(Integer processInstanceVariablesLimit) Limit process instance variablesLocalize process name and description to specified locale.ProcessInstanceQuery.or()Begin an OR statement.ProcessInstanceQuery.orderByProcessDefinitionId()Order by process definition id (needs to be followed byQuery.asc()orQuery.desc()).ProcessInstanceQuery.orderByProcessDefinitionKey()Order by process definition key (needs to be followed byQuery.asc()orQuery.desc()).ProcessInstanceQuery.orderByProcessInstanceId()Order by id (needs to be followed byQuery.asc()orQuery.desc()).ProcessInstanceQuery.orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()).ProcessInstanceQuery.processDefinitionCategory(String processDefinitionCategory) Only select process instances whose process definition category is processDefinitionCategory.ProcessInstanceQuery.processDefinitionId(String processDefinitionId) Select the process instances which are defined by a process definition with the given id.ProcessInstanceQuery.processDefinitionIds(Set<String> processDefinitionIds) Select the process instances which are defined by process definitions with the given ids.ProcessInstanceQuery.processDefinitionKey(String processDefinitionKey) Select the process instances which are defined by a process definition with the given key.ProcessInstanceQuery.processDefinitionKeys(Set<String> processDefinitionKeys) Select the process instances which are defined by process definitions with the given keys.ProcessInstanceQuery.processDefinitionName(String processDefinitionName) Select process instances whose process definition name is processDefinitionNameProcessInstanceQuery.processDefinitionVersion(Integer processDefinitionVersion) Only select process instances with a certain process definition version.ProcessInstanceQuery.processInstanceBusinessKey(String processInstanceBusinessKey) Select process instances with the given business keyProcessInstanceQuery.processInstanceBusinessKey(String processInstanceBusinessKey, String processDefinitionKey) Select process instance with the given business key, unique for the given process definitionProcessInstanceQuery.processInstanceId(String processInstanceId) Select the process instance with the given idProcessInstanceQuery.processInstanceIds(Set<String> processInstanceIds) Select process instances whose id is in the given set of idsProcessInstanceQuery.processInstanceName(String name) Only select process instances with the given name.ProcessInstanceQuery.processInstanceNameLike(String nameLike) Only select process instances with a name like the given value.ProcessInstanceQuery.processInstanceNameLikeIgnoreCase(String nameLikeIgnoreCase) Only select process instances with a name like the given value, ignoring upper/lower case.ProcessInstanceQuery.processInstanceTenantId(String tenantId) Only select process instances that have the given tenant id.ProcessInstanceQuery.processInstanceTenantIdLike(String tenantIdLike) Only select process instances with a tenant id like the given one.ProcessInstanceQuery.processInstanceWithoutTenantId()Only select process instances that do not have a tenant id.ProcessInstanceQuery.startedAfter(Date afterTime) Only select process instances started after the given timeProcessInstanceQuery.startedBefore(Date beforeTime) Only select process instances started before the given timeOnly select process instances started by the given user idProcessInstanceQuery.subProcessInstanceId(String subProcessInstanceId) Select the process instance that have as sub process instance the given process instance.ProcessInstanceQuery.superProcessInstanceId(String superProcessInstanceId) Select the process instances which are a sub process instance of the given super process instance.ProcessInstanceQuery.suspended()Only select process instances which are suspended, either because the process instance itself is suspended or because the corresponding process definition is suspendedProcessInstanceQuery.variableValueEquals(Object value) Only select process instances which have at least one global variable with the given value.ProcessInstanceQuery.variableValueEquals(String name, Object value) Only select process instances which have a global variable with the given value.ProcessInstanceQuery.variableValueEqualsIgnoreCase(String name, String value) Only select process instances which have a local string variable with the given value, case insensitive.ProcessInstanceQuery.variableValueGreaterThan(String name, Object value) Only select process instances which have a variable value greater than the passed value.ProcessInstanceQuery.variableValueGreaterThanOrEqual(String name, Object value) Only select process instances which have a global variable value greater than or equal to the passed value.ProcessInstanceQuery.variableValueLessThan(String name, Object value) Only select process instances which have a global variable value less than the passed value.ProcessInstanceQuery.variableValueLessThanOrEqual(String name, Object value) Only select process instances which have a global variable value less than or equal to the passed value.ProcessInstanceQuery.variableValueLike(String name, String value) Only select process instances which have a global variable value like the given value.ProcessInstanceQuery.variableValueLikeIgnoreCase(String name, String value) Only select process instances which have a global variable value like the given value (case insensitive).ProcessInstanceQuery.variableValueNotEquals(String name, Object value) Only select process instances which have a global variable with the given name, but with a different value than the passed value.ProcessInstanceQuery.variableValueNotEqualsIgnoreCase(String name, String value) Only select process instances which have a local string variable which is not the given value, case insensitive.ProcessInstanceQuery.withJobException()Only select process instances that failed due to an exception happening during a job execution.ProcessInstanceQuery.withLocalizationFallback()Instruct localization to fallback to more general locales including the default locale of the JVM if the specified locale is not found.