public static ims.icps.configuration.domain.objects.ICPPhase extractICPPhase(
      ims.domain.ILightweightDomainFactory domainFactory,
      ims.icp.vo.ICPPhaseVo valueObject,
      HashMap domMap) {
    if (null == valueObject) {
      return null;
    }
    Integer id = valueObject.getID_ICPPhase();
    ims.icps.configuration.domain.objects.ICPPhase domainObject = null;
    if (null == id) {
      if (domMap.get(valueObject) != null) {
        return (ims.icps.configuration.domain.objects.ICPPhase) domMap.get(valueObject);
      }
      // ims.icp.vo.ICPPhaseVo ID_ICPPhase field is unknown
      domainObject = new ims.icps.configuration.domain.objects.ICPPhase();
      domMap.put(valueObject, domainObject);
    } else {
      String key = (valueObject.getClass().getName() + "__" + valueObject.getID_ICPPhase());
      if (domMap.get(key) != null) {
        return (ims.icps.configuration.domain.objects.ICPPhase) domMap.get(key);
      }
      domainObject =
          (ims.icps.configuration.domain.objects.ICPPhase)
              domainFactory.getDomainObject(
                  ims.icps.configuration.domain.objects.ICPPhase.class, id);

      // TODO: Not sure how this should be handled. Effectively it must be a staleobject exception,
      // but maybe should be handled as that further up.
      if (domainObject == null) return null;

      domMap.put(key, domainObject);
    }
    domainObject.setVersion(valueObject.getVersion_ICPPhase());

    domainObject.setRules(
        ims.admin.vo.domain.BusinessRuleVoAssembler.extractBusinessRuleSet(
            domainFactory, valueObject.getRules(), domainObject.getRules(), domMap));
    // This is to overcome a bug in both Sybase and Oracle which prevents them from storing an empty
    // string correctly
    // Sybase stores it as a single space, Oracle stores it as NULL. This fix will make them
    // consistent at least.
    if (valueObject.getDescription() != null && valueObject.getDescription().equals("")) {
      valueObject.setDescription(null);
    }
    domainObject.setDescription(valueObject.getDescription());
    domainObject.setIsActivatedOnInitiation(valueObject.getIsActivatedOnInitiation());

    // SaveAsRefVO treated as RefValueObject
    ims.icps.configuration.vo.ICPActionRefVoCollection refCollection4 =
        new ims.icps.configuration.vo.ICPActionRefVoCollection();
    if (valueObject.getActions() != null) {
      for (int i4 = 0; i4 < valueObject.getActions().size(); i4++) {
        ims.icps.configuration.vo.ICPActionRefVo ref4 =
            (ims.icps.configuration.vo.ICPActionRefVo) valueObject.getActions().get(i4);
        refCollection4.add(ref4);
      }
    }
    int size4 = (null == refCollection4) ? 0 : refCollection4.size();
    java.util.Set domainActions4 = domainObject.getActions();
    if (domainActions4 == null) {
      domainActions4 = new java.util.HashSet();
    }
    java.util.Set newSet4 = new java.util.HashSet();
    for (int i = 0; i < size4; i++) {
      ims.icps.configuration.vo.ICPActionRefVo vo = refCollection4.get(i);
      ims.icps.configuration.domain.objects.ICPAction dom = null;
      if (null != vo) {
        if (vo.getBoId() == null) {
          if (domMap.get(vo) != null) {
            dom = (ims.icps.configuration.domain.objects.ICPAction) domMap.get(vo);
          }
        } else {
          dom =
              (ims.icps.configuration.domain.objects.ICPAction)
                  domainFactory.getDomainObject(
                      ims.icps.configuration.domain.objects.ICPAction.class, vo.getBoId());
        }
      }

      // Trying to avoid the hibernate collection being marked as dirty via its public interface
      // methods. (like add)
      if (!domainActions4.contains(dom)) {
        domainActions4.add(dom);
      }
      newSet4.add(dom);
    }
    java.util.Set removedSet4 = new java.util.HashSet();
    java.util.Iterator iter4 = domainActions4.iterator();
    // Find out which objects need to be removed
    while (iter4.hasNext()) {
      ims.domain.DomainObject o = (ims.domain.DomainObject) iter4.next();
      if ((o == null || o.getIsRIE() == null || !o.getIsRIE().booleanValue())
          && !newSet4.contains(o)) {
        removedSet4.add(o);
      }
    }
    iter4 = removedSet4.iterator();
    // Remove the unwanted objects
    while (iter4.hasNext()) {
      domainActions4.remove(iter4.next());
    }

    domainObject.setActions(domainActions4);
    // This is to overcome a bug in both Sybase and Oracle which prevents them from storing an empty
    // string correctly
    // Sybase stores it as a single space, Oracle stores it as NULL. This fix will make them
    // consistent at least.
    if (valueObject.getName() != null && valueObject.getName().equals("")) {
      valueObject.setName(null);
    }
    domainObject.setName(valueObject.getName());
    domainObject.setGoals(
        ims.icp.vo.domain.IcpPhaseGoalVoAssembler.extractICPPhaseGoalSet(
            domainFactory, valueObject.getGoals(), domainObject.getGoals(), domMap));
    // This is to overcome a bug in both Sybase and Oracle which prevents them from storing an empty
    // string correctly
    // Sybase stores it as a single space, Oracle stores it as NULL. This fix will make them
    // consistent at least.
    if (valueObject.getHelpURL() != null && valueObject.getHelpURL().equals("")) {
      valueObject.setHelpURL(null);
    }
    domainObject.setHelpURL(valueObject.getHelpURL());
    domainObject.setSequence(valueObject.getSequence());
    // create LookupInstance from vo LookupType
    ims.domain.lookups.LookupInstance value9 = null;
    if (null != valueObject.getStatus()) {
      value9 = domainFactory.getLookupInstance(valueObject.getStatus().getID());
    }
    domainObject.setStatus(value9);

    return domainObject;
  }