public Map getContext(String workEffortId) throws WfException {
WfExecutionObject obj = getExecutionObject(workEffortId);
if (obj == null) throw new WfException("Invalid Execution Object (null value)");
if (Debug.verboseOn()) Debug.logVerbose("ProcessContext (" + workEffortId + ") => " + obj.processContext(), module);
return obj.processContext();
}
/**
* Gets the state of the execution object defined by the work effort key.
* @param workEffortId The WorkEffort entity key for the execution object.