Michael Wohlfart [http://community.jboss.org/people/mwohlf] created the discussion
"Re: Variables Scoped only to the Task" To view the discussion, visit: http://community.jboss.org/message/562424#562424 -------------------------------------------------------------- You might be able to do this programmatically if you try this: EnvironmentImpl environment = processEngine.openEnvironment(); try { task.createVariable("variableName", "variableContent", null, false); transitionChoiceVariable = task.getVariableObject("variableName"); transitionChoiceVariable.setExecution(null); } finally { environment.close(); } this should create a variable that is no longer linked to the execution but still to the task -------------------------------------------------------------- Reply to this message by going to Community [http://community.jboss.org/message/562424#562424] Start a new discussion in jBPM at Community [http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2034]
_______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
