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();
 }