Interface ActivityInstantiationBuilder<T extends ActivityInstantiationBuilder<T>>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      T setVariable​(java.lang.String name, java.lang.Object value)
      If an instruction is submitted before then the variable is set when the instruction is executed.
      T setVariableLocal​(java.lang.String name, java.lang.Object value)
      If an instruction is submitted before then the local variable is set when the instruction is executed.
      T setVariables​(java.util.Map<java.lang.String,​java.lang.Object> variables)
      If an instruction is submitted before then all variables are set when the instruction is executed.
      T setVariablesLocal​(java.util.Map<java.lang.String,​java.lang.Object> variables)
      If an instruction is submitted before then all local variables are set when the instruction is executed.
    • Method Detail

      • setVariable

        T setVariable​(java.lang.String name,
                      java.lang.Object value)
        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

        T setVariableLocal​(java.lang.String name,
                           java.lang.Object value)
        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

        T setVariables​(java.util.Map<java.lang.String,​java.lang.Object> variables)
        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

        T setVariablesLocal​(java.util.Map<java.lang.String,​java.lang.Object> variables)
        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.