Package org.camunda.bpm.engine.runtime
Interface UpdateProcessInstancesRequest
-
- All Known Subinterfaces:
UpdateProcessInstancesSuspensionStateBuilder
,UpdateProcessInstanceSuspensionStateSelectBuilder
- All Known Implementing Classes:
UpdateProcessInstancesSuspensionStateBuilderImpl
,UpdateProcessInstanceSuspensionStateBuilderImpl
public interface UpdateProcessInstancesRequest
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateProcessInstancesSuspensionStateBuilder
byHistoricProcessInstanceQuery(HistoricProcessInstanceQuery historicProcessInstanceQuery)
Selects a list of process instances with the given a historical process instance query.UpdateProcessInstancesSuspensionStateBuilder
byProcessInstanceIds(String... processInstanceIds)
Selects a list of process instances with the given list of ids.UpdateProcessInstancesSuspensionStateBuilder
byProcessInstanceIds(List<String> processInstanceIds)
Selects a list of process instances with the given list of ids.UpdateProcessInstancesSuspensionStateBuilder
byProcessInstanceQuery(ProcessInstanceQuery processInstanceQuery)
Selects a list of process instances with the given a process instance query.
-
-
-
Method Detail
-
byProcessInstanceIds
UpdateProcessInstancesSuspensionStateBuilder byProcessInstanceIds(List<String> processInstanceIds)
Selects a list of process instances with the given list of ids.- Parameters:
processInstanceIds
- list of ids of the process instances- Returns:
- the builder
-
byProcessInstanceIds
UpdateProcessInstancesSuspensionStateBuilder byProcessInstanceIds(String... processInstanceIds)
Selects a list of process instances with the given list of ids.- Parameters:
processInstanceIds
- list of ids of the process instances- Returns:
- the builder
-
byProcessInstanceQuery
UpdateProcessInstancesSuspensionStateBuilder byProcessInstanceQuery(ProcessInstanceQuery processInstanceQuery)
Selects a list of process instances with the given a process instance query.- Parameters:
processInstanceQuery
- process instance query that discribes a list of the process instances- Returns:
- the builder
-
byHistoricProcessInstanceQuery
UpdateProcessInstancesSuspensionStateBuilder byHistoricProcessInstanceQuery(HistoricProcessInstanceQuery historicProcessInstanceQuery)
Selects a list of process instances with the given a historical process instance query.- Parameters:
historicProcessInstanceQuery
- historical process instance query that discribes a list of the process instances- Returns:
- the builder
-
-