public void populate(ims.vo.ValueObjectBeanMap map, ims.icp.vo.beans.ICPLiteVoBean bean) {
   this.id = bean.getId();
   this.version = bean.getVersion();
   this.name = bean.getName();
   this.description = bean.getDescription();
   this.status =
       bean.getStatus() == null
           ? null
           : ims.core.vo.lookups.PreActiveActiveInactiveStatus.buildLookup(bean.getStatus());
 }
 public AssessmentQuestionShortVo(ims.core.vo.beans.AssessmentQuestionShortVoBean bean) {
   this.id = bean.getId();
   this.version = bean.getVersion();
   this.ismandatory = bean.getIsMandatory();
   this.activestatus =
       bean.getActiveStatus() == null
           ? null
           : ims.core.vo.lookups.PreActiveActiveInactiveStatus.buildLookup(bean.getActiveStatus());
   this.sequence = bean.getSequence();
   this.allowsmultipleanswers = bean.getAllowsMultipleAnswers();
   this.isnonstandard = bean.getIsNonStandard();
   this.url = bean.getURL();
   this.protocol = bean.getProtocol();
   this.legendtext = bean.getLegendText();
 }
 public ScheduleConfigurationVo(ims.pci.vo.beans.ScheduleConfigurationVoBean bean) {
   this.id = bean.getId();
   this.version = bean.getVersion();
   this.schedulename = bean.getScheduleName();
   this.status =
       bean.getStatus() == null
           ? null
           : ims.core.vo.lookups.PreActiveActiveInactiveStatus.buildLookup(bean.getStatus());
   this.startdob = bean.getStartDob() == null ? null : bean.getStartDob().buildDate();
   this.enddob = bean.getEndDob() == null ? null : bean.getEndDob().buildDate();
   this.isdefaultschedule = bean.getIsDefaultSchedule();
   this.scheduletype =
       bean.getScheduleType() == null
           ? null
           : ims.pci.vo.lookups.ScheduleType.buildLookup(bean.getScheduleType());
   this.campaignstartdate =
       bean.getCampaignStartDate() == null ? null : bean.getCampaignStartDate().buildDate();
   this.stages =
       ims.pci.vo.StageConfigurationVoCollection.buildFromBeanCollection(bean.getStages());
 }