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
 T setVariable(String name, Object value)
          Adds a variable to be set when the current instruction is executed.
 T setVariableLocal(String name, Object value)
          Adds a local variable to be set when the current instruction is executed.
 T setVariables(Map<String,Object> variables)
          Adds all variables to be set when the current instruction is executed
 T setVariablesLocal(Map<String,Object> variables)
          Adds all local variables to be set when the current instruction is executed
 

Method Detail

setVariable

T setVariable(String name,
              Object value)
Adds a variable to be set when the current instruction is executed.


setVariableLocal

T setVariableLocal(String name,
                   Object value)
Adds a local variable to be set when the current instruction is executed.


setVariables

T setVariables(Map<String,Object> variables)
Adds all variables to be set when the current instruction is executed


setVariablesLocal

T setVariablesLocal(Map<String,Object> variables)
Adds all local variables to be set when the current instruction is executed



Copyright © 2015 camunda services GmbH. All rights reserved.