return getCaseExecutionVariable(caseExecutionId, variableName, true);
}
protected Object getCaseExecutionVariable(String caseExecutionId, String variableName, boolean isLocal) {
try {
return commandExecutor.execute(new GetCaseExecutionVariableCmd(caseExecutionId, variableName, isLocal));
}
catch (NullValueException e) {
throw new NotValidException(e.getMessage(), e);
}
catch (CaseExecutionNotFoundException e) {