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