}
public static WfActivity getWfActivity(GenericDelegator delegator, String workEffortId) throws WfException {
if (delegator == null) throw new WfException("The delegator object cannot be null");
if (workEffortId == null) throw new WfException("The WorkEffort key cannot be null");
return new WfActivityImpl(delegator, workEffortId);
}