/**
   * Create the ValueObject collection to hold the set of DomainObjects.
   *
   * @param map - maps DomainObjects to created ValueObjects
   * @param domainObjectSet - Set of ims.core.clinical.domain.objects.SupportNetwork objects.
   */
  public static ims.core.vo.SupportNetworkVoCollection
      createSupportNetworkVoCollectionFromSupportNetwork(
          DomainObjectMap map, java.util.Set domainObjectSet) {
    ims.core.vo.SupportNetworkVoCollection voList = new ims.core.vo.SupportNetworkVoCollection();
    if (null == domainObjectSet) {
      return voList;
    }
    int rieCount = 0;
    int activeCount = 0;
    java.util.Iterator iterator = domainObjectSet.iterator();
    while (iterator.hasNext()) {
      ims.core.clinical.domain.objects.SupportNetwork domainObject =
          (ims.core.clinical.domain.objects.SupportNetwork) iterator.next();
      ims.core.vo.SupportNetworkVo vo = create(map, domainObject);

      if (vo != null) voList.add(vo);

      if (domainObject != null) {
        if (domainObject.getIsRIE() != null && domainObject.getIsRIE().booleanValue() == true)
          rieCount++;
        else activeCount++;
      }
    }
    voList.setRieCount(rieCount);
    voList.setActiveCount(activeCount);
    return voList;
  }
  /**
   * Create the ValueObject collection to hold the list of DomainObjects.
   *
   * @param map - maps DomainObjects to created ValueObjects
   * @param domainObjectList - List of ims.core.clinical.domain.objects.SupportNetwork objects.
   */
  public static ims.core.vo.SupportNetworkVoCollection
      createSupportNetworkVoCollectionFromSupportNetwork(
          DomainObjectMap map, java.util.List domainObjectList) {
    ims.core.vo.SupportNetworkVoCollection voList = new ims.core.vo.SupportNetworkVoCollection();
    if (null == domainObjectList) {
      return voList;
    }
    int rieCount = 0;
    int activeCount = 0;
    for (int i = 0; i < domainObjectList.size(); i++) {
      ims.core.clinical.domain.objects.SupportNetwork domainObject =
          (ims.core.clinical.domain.objects.SupportNetwork) domainObjectList.get(i);
      ims.core.vo.SupportNetworkVo vo = create(map, domainObject);

      if (vo != null) voList.add(vo);

      if (domainObject != null) {
        if (domainObject.getIsRIE() != null && domainObject.getIsRIE().booleanValue() == true)
          rieCount++;
        else activeCount++;
      }
    }

    voList.setRieCount(rieCount);
    voList.setActiveCount(activeCount);
    return voList;
  }
  /**
   * Update the ValueObject with the Domain Object.
   *
   * @param map DomainObjectMap of DomainObjects to already created ValueObjects.
   * @param valueObject to be updated
   * @param domainObject ims.core.clinical.domain.objects.SupportNetwork
   */
  public static ims.core.vo.SupportNetworkVo insert(
      DomainObjectMap map,
      ims.core.vo.SupportNetworkVo valueObject,
      ims.core.clinical.domain.objects.SupportNetwork domainObject) {
    if (null == domainObject) {
      return valueObject;
    }
    if (null == map) {
      map = new DomainObjectMap();
    }

    valueObject.setID_SupportNetwork(domainObject.getId());
    valueObject.setIsRIE(domainObject.getIsRIE());

    // If this is a recordedInError record, and the domainObject
    // value isIncludeRecord has not been set, then we return null and
    // not the value object
    if (valueObject.getIsRIE() != null
        && valueObject.getIsRIE().booleanValue() == true
        && !domainObject.isIncludeRecord()) return null;

    // If this is not a recordedInError record, and the domainObject
    // value isIncludeRecord has been set, then we return null and
    // not the value object
    if ((valueObject.getIsRIE() == null || valueObject.getIsRIE().booleanValue() == false)
        && domainObject.isIncludeRecord()) return null;

    // Professional
    valueObject.setProfessional(
        ims.core.vo.domain.SupportNetworkProfessionalVoAssembler
            .createSupportNetworkProfessionalVoCollectionFromSupportNetworkProfessional(
                map, domainObject.getProfessional()));
    // Services
    valueObject.setServices(
        ims.core.vo.domain.SupportNetworkServicesVoAssembler
            .createSupportNetworkServicesVoCollectionFromSupportNetworkServices(
                map, domainObject.getServices()));
    // ClinicalContact
    valueObject.setClinicalContact(
        ims.core.vo.domain.ClinicalContactVoAssembler.create(
            map, domainObject.getClinicalContact()));
    // CareContext
    if (domainObject.getCareContext() != null) {
      if (domainObject.getCareContext()
          instanceof
          HibernateProxy) // If the proxy is set, there is no need to lazy load, the proxy knows the
      // id already.
      {
        HibernateProxy p = (HibernateProxy) domainObject.getCareContext();
        int id = Integer.parseInt(p.getHibernateLazyInitializer().getIdentifier().toString());
        valueObject.setCareContext(new ims.core.admin.vo.CareContextRefVo(id, -1));
      } else {
        valueObject.setCareContext(
            new ims.core.admin.vo.CareContextRefVo(
                domainObject.getCareContext().getId(), domainObject.getCareContext().getVersion()));
      }
    }
    // Patient
    if (domainObject.getPatient() != null) {
      if (domainObject.getPatient()
          instanceof
          HibernateProxy) // If the proxy is set, there is no need to lazy load, the proxy knows the
      // id already.
      {
        HibernateProxy p = (HibernateProxy) domainObject.getPatient();
        int id = Integer.parseInt(p.getHibernateLazyInitializer().getIdentifier().toString());
        valueObject.setPatient(new ims.core.patient.vo.PatientRefVo(id, -1));
      } else {
        valueObject.setPatient(
            new ims.core.patient.vo.PatientRefVo(
                domainObject.getPatient().getId(), domainObject.getPatient().getVersion()));
      }
    }
    return valueObject;
  }