public ims.vo.ValueObjectBean getBean(ims.vo.ValueObjectBeanMap map) {
   ims.clinicaladmin.vo.beans.SurgicalOperationDetailsConfigVoBean bean = null;
   if (map != null)
     bean =
         (ims.clinicaladmin.vo.beans.SurgicalOperationDetailsConfigVoBean)
             map.getValueObjectBean(this);
   if (bean == null) {
     bean = new ims.clinicaladmin.vo.beans.SurgicalOperationDetailsConfigVoBean();
     map.addValueObjectBean(this, bean);
     bean.populate(map, this);
   }
   return bean;
 }
 public void populate(
     ims.vo.ValueObjectBeanMap map,
     ims.clinicaladmin.vo.beans.SurgicalOperationDetailsConfigVoBean bean) {
   this.id = bean.getId();
   this.version = bean.getVersion();
   this.surgeon = bean.getSurgeon() == null ? null : bean.getSurgeon().buildVo(map);
   this.procedurereference =
       bean.getProcedureReference() == null ? null : bean.getProcedureReference().buildVo(map);
   this.procedure = bean.getProcedure();
   this.incision = bean.getIncision();
   this.findings = bean.getFindings();
   this.closure = bean.getClosure();
   this.postopinstructions = bean.getPostOpInstructions();
   this.prosthesis = bean.getProsthesis();
   this.drain = bean.getDrain();
   this.actionsforgp = bean.getActionsforGP();
   this.nurseenabledinstructions = bean.getNurseEnabledInstructions();
   this.hospitalplan = bean.getHospitalPlan();
 }