/**
   * Update the ValueObject with the Domain Object.
   *
   * @param map DomainObjectMap of DomainObjects to already created ValueObjects.
   * @param valueObject to be updated
   * @param domainObject ims.icps.instantiation.domain.objects.PatientICPStage
   */
  public static ims.icp.vo.PatientICPStagesLiteVo insert(
      DomainObjectMap map,
      ims.icp.vo.PatientICPStagesLiteVo valueObject,
      ims.icps.instantiation.domain.objects.PatientICPStage domainObject) {
    if (null == domainObject) {
      return valueObject;
    }
    if (null == map) {
      map = new DomainObjectMap();
    }

    valueObject.setID_PatientICPStage(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;

    // Stage
    valueObject.setStage(
        ims.icp.vo.domain.ICPStageLiteVoAssembler.create(map, domainObject.getStage()));
    // StagePhases
    valueObject.setStagePhases(
        ims.icp.vo.domain.PatientICPPhasesLiteVoAssembler
            .createPatientICPPhasesLiteVoCollectionFromPatientICPPhase(
                map, domainObject.getStagePhases()));
    // CurrentStatus
    valueObject.setCurrentStatus(
        ims.icp.vo.domain.PatientICPStageStatusVoAssembler.create(
            map, domainObject.getCurrentStatus()));
    return valueObject;
  }