public ims.vo.ValueObjectBean getBean(ims.vo.ValueObjectBeanMap map) {
   ims.admin.vo.beans.ElectiveListHospitalConfigurationVoBean bean = null;
   if (map != null)
     bean =
         (ims.admin.vo.beans.ElectiveListHospitalConfigurationVoBean) map.getValueObjectBean(this);
   if (bean == null) {
     bean = new ims.admin.vo.beans.ElectiveListHospitalConfigurationVoBean();
     map.addValueObjectBean(this, bean);
     bean.populate(map, this);
   }
   return bean;
 }
 public ElectiveListHospitalConfigurationVo(
     ims.admin.vo.beans.ElectiveListHospitalConfigurationVoBean bean) {
   this.id = bean.getId();
   this.version = bean.getVersion();
   this.casenotefolderlocation =
       bean.getCaseNoteFolderLocation() == null
           ? null
           : bean.getCaseNoteFolderLocation().buildVo();
   this.listlocation = bean.getListLocation() == null ? null : bean.getListLocation().buildVo();
 }
 public void populate(
     ims.vo.ValueObjectBeanMap map,
     ims.admin.vo.beans.ElectiveListHospitalConfigurationVoBean bean) {
   this.id = bean.getId();
   this.version = bean.getVersion();
   this.casenotefolderlocation =
       bean.getCaseNoteFolderLocation() == null
           ? null
           : bean.getCaseNoteFolderLocation().buildVo(map);
   this.listlocation = bean.getListLocation() == null ? null : bean.getListLocation().buildVo(map);
 }