Package org.camunda.bpm.engine.runtime
Interface ActivityInstantiationBuilder<T extends ActivityInstantiationBuilder<T>>
- All Known Subinterfaces:
ProcessInstanceModificationInstantiationBuilder
,ProcessInstantiationBuilder
- All Known Implementing Classes:
ProcessInstanceModificationBuilderImpl
,ProcessInstantiationBuilderImpl
public interface ActivityInstantiationBuilder<T extends ActivityInstantiationBuilder<T>>
- Author:
- Thorben Lindhauer
-
Method Summary
Modifier and TypeMethodDescriptionsetVariable
(String name, Object value) If an instruction is submitted before then the variable is set when the instruction is executed.setVariableLocal
(String name, Object value) If an instruction is submitted before then the local variable is set when the instruction is executed.setVariables
(Map<String, Object> variables) If an instruction is submitted before then all variables are set when the instruction is executed.setVariablesLocal
(Map<String, Object> variables) If an instruction is submitted before then all local variables are set when the instruction is executed.
-
Method Details
-
setVariable
If an instruction is submitted before then the variable is set when the instruction is executed. Otherwise, the variable is set on the process instance itself. -
setVariableLocal
If an instruction is submitted before then the local variable is set when the instruction is executed. Otherwise, the variable is set on the process instance itself. -
setVariables
If an instruction is submitted before then all variables are set when the instruction is executed. Otherwise, the variables are set on the process instance itself. -
setVariablesLocal
If an instruction is submitted before then all local variables are set when the instruction is executed. Otherwise, the variables are set on the process instance itself.
-