/** * Copy one ValueObject to another * * @param valueObjectDest to be updated * @param valueObjectSrc to copy values from */ public static ims.clinical.vo.IntraOpPlannedProcedureVo copy( ims.clinical.vo.IntraOpPlannedProcedureVo valueObjectDest, ims.clinical.vo.IntraOpPlannedProcedureVo valueObjectSrc) { if (null == valueObjectSrc) { return valueObjectSrc; } valueObjectDest.setID_IntraOpPlannedProcedure(valueObjectSrc.getID_IntraOpPlannedProcedure()); valueObjectDest.setIsRIE(valueObjectSrc.getIsRIE()); // TheatreAppointment valueObjectDest.setTheatreAppointment(valueObjectSrc.getTheatreAppointment()); // PlannedProcedure valueObjectDest.setPlannedProcedure(valueObjectSrc.getPlannedProcedure()); return valueObjectDest; }
/** * Update the ValueObject with the Domain Object. * * @param map DomainObjectMap of DomainObjects to already created ValueObjects. * @param valueObject to be updated * @param domainObject ims.clinical.domain.objects.IntraOpPlannedProcedure */ public static ims.clinical.vo.IntraOpPlannedProcedureVo insert( DomainObjectMap map, ims.clinical.vo.IntraOpPlannedProcedureVo valueObject, ims.clinical.domain.objects.IntraOpPlannedProcedure domainObject) { if (null == domainObject) { return valueObject; } if (null == map) { map = new DomainObjectMap(); } valueObject.setID_IntraOpPlannedProcedure(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; // TheatreAppointment if (domainObject.getTheatreAppointment() != null) { if (domainObject.getTheatreAppointment() instanceof HibernateProxy) // If the proxy is set, there is no need to lazy load, the proxy knows the // id already. { HibernateProxy p = (HibernateProxy) domainObject.getTheatreAppointment(); int id = Integer.parseInt(p.getHibernateLazyInitializer().getIdentifier().toString()); valueObject.setTheatreAppointment(new ims.scheduling.vo.Booking_AppointmentRefVo(id, -1)); } else { valueObject.setTheatreAppointment( new ims.scheduling.vo.Booking_AppointmentRefVo( domainObject.getTheatreAppointment().getId(), domainObject.getTheatreAppointment().getVersion())); } } // PlannedProcedure valueObject.setPlannedProcedure( ims.core.vo.domain.PatientProcedureMinVoAssembler.create( map, domainObject.getPlannedProcedure())); return valueObject; }