Uses of Interface
org.camunda.bpm.engine.runtime.ProcessInstanceQuery
-
Packages that use ProcessInstanceQuery Package Description org.camunda.bpm.engine Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration(typically based on a configuration file), from which aProcessEnginecan be obtained.
Through the services obtained from such aProcessEngine, BPM and workflow operation can be executed:
RepositoryService: ManagesDeployments
RuntimeService: For starting and searchingProcessInstances
TaskService: Exposes operations to manage human (standalone)Tasks, such as claiming, completing and assigning tasks
IdentityService: Used for managingUsers,Groups and the relations between them
ManagementService: Exposes engine admin and maintenance operations, which have no relation to the runtime execution of business processes
HistoryService: Exposes information about ongoing and past process instances.
FormService: Access to form data and rendered forms for starting new process instances and completing tasks.org.camunda.bpm.engine.externaltask org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.impl.cmd org.camunda.bpm.engine.impl.cmd.batch org.camunda.bpm.engine.impl.cmd.batch.variables org.camunda.bpm.engine.impl.migration org.camunda.bpm.engine.impl.runtime org.camunda.bpm.engine.migration org.camunda.bpm.engine.rest.dto.runtime org.camunda.bpm.engine.runtime Classes related to theRuntimeService.org.camunda.bpm.engine.test.assertions.bpmn org.camunda.bpm.qa.upgrade -
-
Uses of ProcessInstanceQuery in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return ProcessInstanceQuery Modifier and Type Method Description ProcessInstanceQueryRuntimeService. createProcessInstanceQuery()Creates a newProcessInstanceQueryinstance, that can be used to query process instances.Methods in org.camunda.bpm.engine with parameters of type ProcessInstanceQuery Modifier and Type Method Description BatchRuntimeService. deleteProcessInstancesAsync(java.util.List<java.lang.String> processInstanceIds, ProcessInstanceQuery processInstanceQuery, java.lang.String deleteReason)Delete an existing runtime process instances asynchronously using Batch operation.BatchRuntimeService. deleteProcessInstancesAsync(java.util.List<java.lang.String> processInstanceIds, ProcessInstanceQuery processInstanceQuery, java.lang.String deleteReason, boolean skipCustomListeners)Delete an existing runtime process instances asynchronously using Batch operation.BatchRuntimeService. deleteProcessInstancesAsync(java.util.List<java.lang.String> processInstanceIds, ProcessInstanceQuery processInstanceQuery, java.lang.String deleteReason, boolean skipCustomListeners, boolean skipSubprocesses)Delete an existing runtime process instances asynchronously using Batch operation.BatchRuntimeService. deleteProcessInstancesAsync(java.util.List<java.lang.String> processInstanceIds, ProcessInstanceQuery processInstanceQuery, HistoricProcessInstanceQuery historicProcessInstanceQuery, java.lang.String deleteReason, boolean skipCustomListeners, boolean skipSubprocesses)Delete an existing runtime process instances asynchronously using Batch operation.BatchRuntimeService. deleteProcessInstancesAsync(ProcessInstanceQuery processInstanceQuery, java.lang.String deleteReason)Delete an existing runtime process instances asynchronously using Batch operation.BatchManagementService. setJobRetriesAsync(java.util.List<java.lang.String> processInstanceIds, ProcessInstanceQuery query, int retries)Sets the number of retries that jobs have left asynchronously.BatchManagementService. setJobRetriesAsync(java.util.List<java.lang.String> processInstanceIds, ProcessInstanceQuery processInstanceQuery, HistoricProcessInstanceQuery historicProcessInstanceQuery, int retries)Sets the number of retries that jobs have left asynchronously.BatchRuntimeService. setVariablesAsync(java.util.List<java.lang.String> processInstanceIds, ProcessInstanceQuery processInstanceQuery, HistoricProcessInstanceQuery historicProcessInstanceQuery, java.util.Map<java.lang.String,?> variables)Update or create runtime process variables in the root scope of process instances.BatchRuntimeService. setVariablesAsync(ProcessInstanceQuery processInstanceQuery, java.util.Map<java.lang.String,?> variables)Update or create runtime process variables in the root scope of process instances. -
Uses of ProcessInstanceQuery in org.camunda.bpm.engine.externaltask
Methods in org.camunda.bpm.engine.externaltask with parameters of type ProcessInstanceQuery Modifier and Type Method Description UpdateExternalTaskRetriesBuilderUpdateExternalTaskRetriesSelectBuilder. processInstanceQuery(ProcessInstanceQuery processInstanceQuery)Selects a list of external tasks with the given process instance query. -
Uses of ProcessInstanceQuery in org.camunda.bpm.engine.impl
Classes in org.camunda.bpm.engine.impl that implement ProcessInstanceQuery Modifier and Type Class Description classProcessInstanceQueryImplFields in org.camunda.bpm.engine.impl declared as ProcessInstanceQuery Modifier and Type Field Description protected ProcessInstanceQueryMessageCorrelationAsyncBuilderImpl. processInstanceQueryprotected ProcessInstanceQueryModificationBuilderImpl. processInstanceQueryprotected ProcessInstanceQueryUpdateProcessInstancesSuspensionStateBuilderImpl. processInstanceQueryprotected ProcessInstanceQuerySetJobsRetriesByProcessBatchCmd. queryMethods in org.camunda.bpm.engine.impl that return ProcessInstanceQuery Modifier and Type Method Description ProcessInstanceQueryProcessInstanceQueryImpl. active()ProcessInstanceQueryProcessInstanceQueryImpl. activityIdIn(java.lang.String... activityIds)ProcessInstanceQueryProcessInstanceQueryImpl. caseInstanceId(java.lang.String caseInstanceId)ProcessInstanceQueryRuntimeServiceImpl. createProcessInstanceQuery()ProcessInstanceQueryProcessInstanceQueryImpl. deploymentId(java.lang.String deploymentId)ProcessInstanceQueryProcessInstanceQueryImpl. endOr()ProcessInstanceQueryMessageCorrelationAsyncBuilderImpl. getProcessInstanceQuery()ProcessInstanceQueryModificationBuilderImpl. getProcessInstanceQuery()ProcessInstanceQueryUpdateProcessInstancesSuspensionStateBuilderImpl. getProcessInstanceQuery()ProcessInstanceQueryProcessInstanceQueryImpl. incidentId(java.lang.String incidentId)ProcessInstanceQueryProcessInstanceQueryImpl. incidentMessage(java.lang.String incidentMessage)ProcessInstanceQueryProcessInstanceQueryImpl. incidentMessageLike(java.lang.String incidentMessageLike)ProcessInstanceQueryProcessInstanceQueryImpl. incidentType(java.lang.String incidentType)ProcessInstanceQueryProcessInstanceQueryImpl. leafProcessInstances()ProcessInstanceQueryProcessInstanceQueryImpl. or()ProcessInstanceQueryProcessInstanceQueryImpl. orderByBusinessKey()ProcessInstanceQueryProcessInstanceQueryImpl. orderByProcessDefinitionId()ProcessInstanceQueryProcessInstanceQueryImpl. orderByProcessDefinitionKey()ProcessInstanceQueryProcessInstanceQueryImpl. orderByProcessInstanceId()ProcessInstanceQueryProcessInstanceQueryImpl. orderByTenantId()ProcessInstanceQueryProcessInstanceQueryImpl. processDefinitionKeyIn(java.lang.String... processDefinitionKeys)ProcessInstanceQueryProcessInstanceQueryImpl. processDefinitionKeyNotIn(java.lang.String... processDefinitionKeys)ProcessInstanceQueryProcessInstanceQueryImpl. processDefinitionWithoutTenantId()ProcessInstanceQueryProcessInstanceQueryImpl. processInstanceBusinessKey(java.lang.String businessKey)ProcessInstanceQueryProcessInstanceQueryImpl. processInstanceBusinessKey(java.lang.String businessKey, java.lang.String processDefinitionKey)ProcessInstanceQueryProcessInstanceQueryImpl. processInstanceBusinessKeyLike(java.lang.String businessKeyLike)ProcessInstanceQueryProcessInstanceQueryImpl. processInstanceIds(java.util.Set<java.lang.String> processInstanceIds)ProcessInstanceQueryProcessInstanceQueryImpl. rootProcessInstances()ProcessInstanceQueryProcessInstanceQueryImpl. subCaseInstanceId(java.lang.String subCaseInstanceId)ProcessInstanceQueryProcessInstanceQueryImpl. subProcessInstanceId(java.lang.String subProcessInstanceId)ProcessInstanceQueryProcessInstanceQueryImpl. superCaseInstanceId(java.lang.String superCaseInstanceId)ProcessInstanceQueryProcessInstanceQueryImpl. superProcessInstanceId(java.lang.String superProcessInstanceId)ProcessInstanceQueryProcessInstanceQueryImpl. suspended()ProcessInstanceQueryProcessInstanceQueryImpl. tenantIdIn(java.lang.String... tenantIds)ProcessInstanceQueryProcessInstanceQueryImpl. withIncident()ProcessInstanceQueryProcessInstanceQueryImpl. withoutTenantId()Methods in org.camunda.bpm.engine.impl with parameters of type ProcessInstanceQuery Modifier and Type Method Description UpdateProcessInstancesSuspensionStateBuilderUpdateProcessInstancesSuspensionStateBuilderImpl. byProcessInstanceQuery(ProcessInstanceQuery processInstanceQuery)BatchRuntimeServiceImpl. deleteProcessInstancesAsync(java.util.List<java.lang.String> processInstanceIds, ProcessInstanceQuery processInstanceQuery, java.lang.String deleteReason)BatchRuntimeServiceImpl. deleteProcessInstancesAsync(java.util.List<java.lang.String> processInstanceIds, ProcessInstanceQuery processInstanceQuery, java.lang.String deleteReason, boolean skipCustomListeners)BatchRuntimeServiceImpl. deleteProcessInstancesAsync(java.util.List<java.lang.String> processInstanceIds, ProcessInstanceQuery processInstanceQuery, java.lang.String deleteReason, boolean skipCustomListeners, boolean skipSubprocesses)BatchRuntimeServiceImpl. deleteProcessInstancesAsync(java.util.List<java.lang.String> processInstanceIds, ProcessInstanceQuery processInstanceQuery, HistoricProcessInstanceQuery historicProcessInstanceQuery, java.lang.String deleteReason, boolean skipCustomListeners, boolean skipSubprocesses)BatchRuntimeServiceImpl. deleteProcessInstancesAsync(ProcessInstanceQuery processInstanceQuery, java.lang.String deleteReason)MessageCorrelationAsyncBuilderMessageCorrelationAsyncBuilderImpl. processInstanceQuery(ProcessInstanceQuery processInstanceQuery)ModificationBuilderModificationBuilderImpl. processInstanceQuery(ProcessInstanceQuery processInstanceQuery)BatchManagementServiceImpl. setJobRetriesAsync(java.util.List<java.lang.String> processInstanceIds, ProcessInstanceQuery query, int retries)BatchManagementServiceImpl. setJobRetriesAsync(java.util.List<java.lang.String> processInstanceIds, ProcessInstanceQuery query, HistoricProcessInstanceQuery historicProcessInstanceQuery, int retries)BatchRuntimeServiceImpl. setVariablesAsync(java.util.List<java.lang.String> processInstanceIds, ProcessInstanceQuery processInstanceQuery, HistoricProcessInstanceQuery historicProcessInstanceQuery, java.util.Map<java.lang.String,?> variables)BatchRuntimeServiceImpl. setVariablesAsync(ProcessInstanceQuery processInstanceQuery, java.util.Map<java.lang.String,?> variables)Constructors in org.camunda.bpm.engine.impl with parameters of type ProcessInstanceQuery Constructor Description SetJobsRetriesByProcessBatchCmd(java.util.List<java.lang.String> processInstanceIds, ProcessInstanceQuery query, HistoricProcessInstanceQuery historicProcessInstanceQuery, int retries) -
Uses of ProcessInstanceQuery in org.camunda.bpm.engine.impl.cmd
Fields in org.camunda.bpm.engine.impl.cmd declared as ProcessInstanceQuery Modifier and Type Field Description protected ProcessInstanceQueryUpdateExternalTaskRetriesBuilderImpl. processInstanceQueryMethods in org.camunda.bpm.engine.impl.cmd that return ProcessInstanceQuery Modifier and Type Method Description ProcessInstanceQueryUpdateExternalTaskRetriesBuilderImpl. getProcessInstanceQuery()Methods in org.camunda.bpm.engine.impl.cmd with parameters of type ProcessInstanceQuery Modifier and Type Method Description UpdateExternalTaskRetriesBuilderUpdateExternalTaskRetriesBuilderImpl. processInstanceQuery(ProcessInstanceQuery processInstanceQuery) -
Uses of ProcessInstanceQuery in org.camunda.bpm.engine.impl.cmd.batch
Fields in org.camunda.bpm.engine.impl.cmd.batch declared as ProcessInstanceQuery Modifier and Type Field Description protected ProcessInstanceQueryCorrelateAllMessageBatchCmd. processInstanceQueryprotected ProcessInstanceQueryDeleteProcessInstanceBatchCmd. processInstanceQueryConstructors in org.camunda.bpm.engine.impl.cmd.batch with parameters of type ProcessInstanceQuery Constructor Description DeleteProcessInstanceBatchCmd(java.util.List<java.lang.String> processInstances, ProcessInstanceQuery processInstanceQuery, HistoricProcessInstanceQuery historicProcessInstanceQuery, java.lang.String deleteReason, boolean skipCustomListeners, boolean skipSubprocesses) -
Uses of ProcessInstanceQuery in org.camunda.bpm.engine.impl.cmd.batch.variables
Fields in org.camunda.bpm.engine.impl.cmd.batch.variables declared as ProcessInstanceQuery Modifier and Type Field Description protected ProcessInstanceQuerySetVariablesToProcessInstancesBatchCmd. processInstanceQueryConstructors in org.camunda.bpm.engine.impl.cmd.batch.variables with parameters of type ProcessInstanceQuery Constructor Description SetVariablesToProcessInstancesBatchCmd(java.util.List<java.lang.String> processInstanceIds, ProcessInstanceQuery processInstanceQuery, HistoricProcessInstanceQuery historicProcessInstanceQuery, java.util.Map<java.lang.String,?> variables) -
Uses of ProcessInstanceQuery in org.camunda.bpm.engine.impl.migration
Fields in org.camunda.bpm.engine.impl.migration declared as ProcessInstanceQuery Modifier and Type Field Description protected ProcessInstanceQueryMigrationPlanExecutionBuilderImpl. processInstanceQueryMethods in org.camunda.bpm.engine.impl.migration that return ProcessInstanceQuery Modifier and Type Method Description ProcessInstanceQueryMigrationPlanExecutionBuilderImpl. getProcessInstanceQuery()Methods in org.camunda.bpm.engine.impl.migration with parameters of type ProcessInstanceQuery Modifier and Type Method Description MigrationPlanExecutionBuilderMigrationPlanExecutionBuilderImpl. processInstanceQuery(ProcessInstanceQuery processInstanceQuery) -
Uses of ProcessInstanceQuery in org.camunda.bpm.engine.impl.runtime
Methods in org.camunda.bpm.engine.impl.runtime with parameters of type ProcessInstanceQuery Modifier and Type Method Description UpdateProcessInstancesSuspensionStateBuilderUpdateProcessInstanceSuspensionStateBuilderImpl. byProcessInstanceQuery(ProcessInstanceQuery processInstanceQuery) -
Uses of ProcessInstanceQuery in org.camunda.bpm.engine.migration
Methods in org.camunda.bpm.engine.migration with parameters of type ProcessInstanceQuery Modifier and Type Method Description MigrationPlanExecutionBuilderMigrationPlanExecutionBuilder. processInstanceQuery(ProcessInstanceQuery processInstanceQuery) -
Uses of ProcessInstanceQuery in org.camunda.bpm.engine.rest.dto.runtime
Methods in org.camunda.bpm.engine.rest.dto.runtime that return ProcessInstanceQuery Modifier and Type Method Description protected ProcessInstanceQueryProcessInstanceQueryDto. createNewQuery(ProcessEngine engine)Methods in org.camunda.bpm.engine.rest.dto.runtime with parameters of type ProcessInstanceQuery Modifier and Type Method Description protected voidProcessInstanceQueryDto. applyFilters(ProcessInstanceQuery query)protected voidProcessInstanceQueryDto. applySortBy(ProcessInstanceQuery query, java.lang.String sortBy, java.util.Map<java.lang.String,java.lang.Object> parameters, ProcessEngine engine) -
Uses of ProcessInstanceQuery in org.camunda.bpm.engine.runtime
Methods in org.camunda.bpm.engine.runtime that return ProcessInstanceQuery Modifier and Type Method Description ProcessInstanceQueryProcessInstanceQuery. active()Only selects process instances which are active, which means that neither the process instance nor the corresponding process definition are suspended.ProcessInstanceQueryProcessInstanceQuery. activityIdIn(java.lang.String... activityIds)Only selects process instances with leaf activity instances or transition instances (async before, async after) in at least one of the given activity ids.ProcessInstanceQueryProcessInstanceQuery. caseInstanceId(java.lang.String caseInstanceId)Selects the process instances which are associated with the given case instance id.ProcessInstanceQueryProcessInstanceQuery. deploymentId(java.lang.String deploymentId)Selects the process instances which belong to the given deployment id.ProcessInstanceQueryProcessInstanceQuery. endOr()endOr() terminates an OR query on which an arbitrary amount of filter criteria were applied.ProcessInstanceQueryProcessInstanceQuery. incidentId(java.lang.String incidentId)Only selects process instances with the given incident id.ProcessInstanceQueryProcessInstanceQuery. incidentMessage(java.lang.String incidentMessage)Only selects process instances with the given incident message.ProcessInstanceQueryProcessInstanceQuery. incidentMessageLike(java.lang.String incidentMessageLike)Only selects process instances with an incident message like the given.ProcessInstanceQueryProcessInstanceQuery. incidentType(java.lang.String incidentType)Only selects process instances with the given incident type.ProcessInstanceQueryProcessInstanceQuery. leafProcessInstances()Only selects process instances which don't have subprocesses and thus are leaves of the execution tree.ProcessInstanceQueryProcessInstanceQuery. matchVariableNamesIgnoreCase()The query will match the names of process-variables in a case-insensitive way.ProcessInstanceQueryProcessInstanceQuery. matchVariableValuesIgnoreCase()The query will match the values of process-variables in a case-insensitive way.ProcessInstanceQueryProcessInstanceQuery. or()After calling or(), a chain of several filter criteria could follow.ProcessInstanceQueryProcessInstanceQuery. orderByBusinessKey()Order by the business key (needs to be followed byQuery.asc()orQuery.desc()).ProcessInstanceQueryProcessInstanceQuery. orderByProcessDefinitionId()Order by process definition id (needs to be followed byQuery.asc()orQuery.desc()).ProcessInstanceQueryProcessInstanceQuery. orderByProcessDefinitionKey()Order by process definition key (needs to be followed byQuery.asc()orQuery.desc()).ProcessInstanceQueryProcessInstanceQuery. orderByProcessInstanceId()Order by id (needs to be followed byQuery.asc()orQuery.desc()).ProcessInstanceQueryProcessInstanceQuery. orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()).ProcessInstanceQueryProcessInstanceQuery. processDefinitionId(java.lang.String processDefinitionId)Selects the process instances which are defined by a process definition with the given id.ProcessInstanceQueryProcessInstanceQuery. processDefinitionKey(java.lang.String processDefinitionKey)Select the process instances which are defined by a process definition with the given key.ProcessInstanceQueryProcessInstanceQuery. processDefinitionKeyIn(java.lang.String... processDefinitionKeys)Select the process instances for any given process definition keys.ProcessInstanceQueryProcessInstanceQuery. processDefinitionKeyNotIn(java.lang.String... processDefinitionKeys)Select historic process instances that don't have a process-definition of which the key is present in the given listProcessInstanceQueryProcessInstanceQuery. processDefinitionWithoutTenantId()Only selects process instances which process definition has no tenant id.ProcessInstanceQueryProcessInstanceQuery. processInstanceBusinessKey(java.lang.String processInstanceBusinessKey)Select process instances with the given business keyProcessInstanceQueryProcessInstanceQuery. processInstanceBusinessKey(java.lang.String processInstanceBusinessKey, java.lang.String processDefinitionKey)Select process instance with the given business key, unique for the given process definitionProcessInstanceQueryProcessInstanceQuery. processInstanceBusinessKeyLike(java.lang.String processInstanceBusinessKeyLike)Select process instances with a business key like the given value.ProcessInstanceQueryProcessInstanceQuery. processInstanceId(java.lang.String processInstanceId)Select the process instance with the given idProcessInstanceQueryProcessInstanceQuery. processInstanceIds(java.util.Set<java.lang.String> processInstanceIds)Select process instances whose id is in the given set of idsProcessInstanceQueryProcessInstanceQuery. rootProcessInstances()Only selects process instances which are top level process instances.ProcessInstanceQueryProcessInstanceQuery. subCaseInstanceId(java.lang.String subCaseInstanceId)Select the process instance that has as sub case instance the given case instance.ProcessInstanceQueryProcessInstanceQuery. subProcessInstanceId(java.lang.String subProcessInstanceId)Select the process instance that have as sub process instance the given process instance.ProcessInstanceQueryProcessInstanceQuery. superCaseInstanceId(java.lang.String superCaseInstanceId)Select the process instances which are a sub process instance of the given super case instance.ProcessInstanceQueryProcessInstanceQuery. superProcessInstanceId(java.lang.String superProcessInstanceId)Select the process instances which are a sub process instance of the given super process instance.ProcessInstanceQueryProcessInstanceQuery. suspended()Only selects process instances which are suspended, either because the process instance itself is suspended or because the corresponding process definition is suspendedProcessInstanceQueryProcessInstanceQuery. tenantIdIn(java.lang.String... tenantIds)Only select process instances with one of the given tenant ids.ProcessInstanceQueryProcessInstanceQuery. variableValueEquals(java.lang.String name, java.lang.Object value)Only select process instances which have a global variable with the given value.ProcessInstanceQueryProcessInstanceQuery. variableValueGreaterThan(java.lang.String name, java.lang.Object value)Only select process instances which have a variable value greater than the passed value.ProcessInstanceQueryProcessInstanceQuery. variableValueGreaterThanOrEqual(java.lang.String name, java.lang.Object value)Only select process instances which have a global variable value greater than or equal to the passed value.ProcessInstanceQueryProcessInstanceQuery. variableValueLessThan(java.lang.String name, java.lang.Object value)Only select process instances which have a global variable value less than the passed value.ProcessInstanceQueryProcessInstanceQuery. variableValueLessThanOrEqual(java.lang.String name, java.lang.Object value)Only select process instances which have a global variable value less than or equal to the passed value.ProcessInstanceQueryProcessInstanceQuery. variableValueLike(java.lang.String name, java.lang.String value)Only select process instances which have a global variable value like the given value.ProcessInstanceQueryProcessInstanceQuery. variableValueNotEquals(java.lang.String name, java.lang.Object value)Only select process instances which have a global variable with the given name, but with a different value than the passed value.ProcessInstanceQueryProcessInstanceQuery. withIncident()Only selects process instances with at least one incident.ProcessInstanceQueryProcessInstanceQuery. withoutTenantId()Only selects process instances which have no tenant id.Methods in org.camunda.bpm.engine.runtime with parameters of type ProcessInstanceQuery Modifier and Type Method Description UpdateProcessInstancesSuspensionStateBuilderUpdateProcessInstancesRequest. byProcessInstanceQuery(ProcessInstanceQuery processInstanceQuery)Selects a list of process instances with the given a process instance query.MessageCorrelationAsyncBuilderMessageCorrelationAsyncBuilder. processInstanceQuery(ProcessInstanceQuery processInstanceQuery)Correlate the message such that the process instances found by the given query are selected.ModificationBuilderModificationBuilder. processInstanceQuery(ProcessInstanceQuery processInstanceQuery) -
Uses of ProcessInstanceQuery in org.camunda.bpm.engine.test.assertions.bpmn
Methods in org.camunda.bpm.engine.test.assertions.bpmn that return ProcessInstanceQuery Modifier and Type Method Description protected ProcessInstanceQueryAbstractProcessAssert. processInstanceQuery()static ProcessInstanceQueryBpmnAwareTests. processInstanceQuery()Helper method to easily create a new ProcessInstanceQueryprotected ProcessInstanceQueryProcessDefinitionAssert. processInstanceQuery()protected ProcessInstanceQueryProcessInstanceAssert. processInstanceQuery()Methods in org.camunda.bpm.engine.test.assertions.bpmn with parameters of type ProcessInstanceQuery Modifier and Type Method Description static ProcessInstanceBpmnAwareTests. calledProcessInstance(ProcessInstanceQuery processInstanceQuery)Helper method to easily access the only called process instance compliant to a given processInstanceQuery and currently available in the context of the last asserted process instance.static ProcessInstanceBpmnAwareTests. calledProcessInstance(ProcessInstanceQuery processInstanceQuery, ProcessInstance processInstance)Helper method to easily access the only called process instance compliant to a given processInstanceQuery and currently available in the context of the given process instance.ProcessInstanceAssertProcessInstanceAssert. calledProcessInstance(ProcessInstanceQuery query)Enter into a chained process instance assert inspecting a called process instance called by and currently available in the context of the process instance under test of this ProcessInstanceAssert. -
Uses of ProcessInstanceQuery in org.camunda.bpm.qa.upgrade
Methods in org.camunda.bpm.qa.upgrade that return ProcessInstanceQuery Modifier and Type Method Description ProcessInstanceQueryUpgradeTestRule. processInstanceQuery()
-