expressionVariables.putAll(getGlobalVariables(session));
ProcessInstance processInstance = session.getStateful().getProcessInstance(processInstanceId);
expressionVariables.putAll(getProcessInstanceVariables(processInstance));
}
session.getStateful().abortProcessInstance(processInstanceId);
utx.commit();
} catch (RuntimeException re) {
utx.rollback();
throw re;
}
break;