コード例 #1
0
  /**
   * Update the ValueObject with the Domain Object.
   *
   * @param map DomainObjectMap of DomainObjects to already created ValueObjects.
   * @param valueObject to be updated
   * @param domainObject ims.therapies.treatment.domain.objects.Mobilisations
   */
  public static ims.therapies.vo.MobilisationsShortVo insert(
      DomainObjectMap map,
      ims.therapies.vo.MobilisationsShortVo valueObject,
      ims.therapies.treatment.domain.objects.Mobilisations domainObject) {
    if (null == domainObject) {
      return valueObject;
    }
    if (null == map) {
      map = new DomainObjectMap();
    }

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

    // ClinicalContact
    valueObject.setClinicalContact(
        ims.core.vo.domain.ClinicalContactShortVoAssembler.create(
            map, domainObject.getClinicalContact()));
    // AuthoringCP
    valueObject.setAuthoringCP(
        ims.core.vo.domain.HcpAssembler.create(map, domainObject.getAuthoringCP()));
    // AuthoringDateTime
    java.util.Date AuthoringDateTime = domainObject.getAuthoringDateTime();
    if (null != AuthoringDateTime) {
      valueObject.setAuthoringDateTime(new ims.framework.utils.DateTime(AuthoringDateTime));
    }
    return valueObject;
  }