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