public void populate(ims.vo.ValueObjectBeanMap map, ims.naes.vo.beans.TemplateActionVoBean bean) { this.id = bean.getId(); this.version = bean.getVersion(); this.actions = bean.getActions() == null ? null : ims.naes.vo.lookups.Action.buildLookup(bean.getActions()); }
public TemplateActionVo(ims.naes.vo.beans.TemplateActionVoBean bean) { this.id = bean.getId(); this.version = bean.getVersion(); this.actions = bean.getActions() == null ? null : ims.naes.vo.lookups.Action.buildLookup(bean.getActions()); }
public void populate(ims.vo.ValueObjectBeanMap map, ims.naes.vo.beans.filterVoBean bean) { this.action = bean.getAction() == null ? null : ims.naes.vo.lookups.Action.buildLookup(bean.getAction()); this.startdate = bean.getStartDate() == null ? null : bean.getStartDate().buildDate(); this.status = bean.getStatus() == null ? null : ims.naes.vo.lookups.NaesActionStatus.buildLookup(bean.getStatus()); this.todate = bean.getToDate() == null ? null : bean.getToDate().buildDate(); this.days = bean.getDays(); this.positiveornegative = bean.getPositiveOrNegative(); this.ordernumber = bean.getOrderNumber(); this.moslite = bean.getMOSLite() == null ? null : bean.getMOSLite().buildVo(map); }