135136137138139140141142143144145
variable.setExecution(getExecution()); variable.setTask(getTask()); variable.setHistoryEnabled(isHistoryEnabled); if (isHistoryEnabled) { HistoryEvent.fire(new VariableCreate(variable)); } variable.setValue(value); return variable;
141142143144145146147148149150151
long dbid = DbidGenerator.getDbidGenerator().getNextId(); variable.setDbid(dbid); if (isHistoryEnabled) { HistoryEvent.fire(new VariableCreate(variable)); } return variable; }