*/
public static WfResource getWfResource(GenericDelegator delegator, String key, String name, String party, String role) throws WfException {
if (delegator == null) throw new WfException("Delegator cannot be null");
if (party == null) party = "_NA_";
if (role == null) role = "_NA_";
return new WfResourceImpl(delegator, key, name, party, role);
}