Uploaded image for project: 'jBPM'
  1. jBPM
  2. JBPM-2118

add task variable methods

XMLWordPrintable

    • Icon: Task Task
    • Resolution: Done
    • Icon: Major Major
    • jBPM 4.0.0.Beta1
    • None
    • None
    • None

      submit(taskId, variables);

      +

      /** creates or overwrites a variable value on the referenced execution */
      Execution setVariable(String executionId, String name, Object value);

      /** creates or overwrites the variable values on the referenced execution */
      Execution setVariables(String executionId, Map<String, Object> variables);

      /** retrieves a variable */
      Object getVariable(String executionId, String variableName);

      /** all the variables visible in the given execution scope */
      Set<String> getVariableNames(String executionId);

      /** retrieves a map of variables */
      Map<String, Object> getVariables(String executionId, Set<String> variableNames);

              tom.baeyens Tom Baeyens (Inactive)
              tom.baeyens Tom Baeyens (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

                Created:
                Updated:
                Resolved: