[JBoss JIRA] Created: (JBPM-2118) add task variable methods
by Tom Baeyens (JIRA)
add task variable methods
-------------------------
Key: JBPM-2118
URL: https://jira.jboss.org/jira/browse/JBPM-2118
Project: JBoss jBPM
Issue Type: Task
Security Level: Public (Everyone can see)
Reporter: Tom Baeyens
Assignee: Tom Baeyens
Fix For: jBPM 4.0.0.Beta1
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);
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 9 months