/** * Create the ValueObject from the ims.therapies.treatment.domain.objects.Mobilisations object. * * @param map DomainObjectMap of DomainObjects to already created ValueObjects. * @param domainObject */ public static ims.therapies.vo.MobilisationsShortVo create( DomainObjectMap map, ims.therapies.treatment.domain.objects.Mobilisations domainObject) { if (null == domainObject) { return null; } // check if the domainObject already has a valueObject created for it ims.therapies.vo.MobilisationsShortVo valueObject = (ims.therapies.vo.MobilisationsShortVo) map.getValueObject(domainObject, ims.therapies.vo.MobilisationsShortVo.class); if (null == valueObject) { valueObject = new ims.therapies.vo.MobilisationsShortVo( domainObject.getId(), domainObject.getVersion()); map.addValueObject(domainObject, valueObject); valueObject = insert(map, valueObject, domainObject); } return valueObject; }
/** * 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; }