public void populate(ims.vo.ValueObjectBeanMap map, ims.core.vo.ConsentGivenVo vo) { this.id = vo.getBoId(); this.version = vo.getBoVersion(); this.consentgiven = vo.getConsentGiven(); this.dateconsentgiven = vo.getDateConsentGiven() == null ? null : (ims.framework.utils.beans.DateBean) vo.getDateConsentGiven().getBean(); }
public ConsentGivenVoBean(ims.core.vo.ConsentGivenVo vo) { this.id = vo.getBoId(); this.version = vo.getBoVersion(); this.consentgiven = vo.getConsentGiven(); this.dateconsentgiven = vo.getDateConsentGiven() == null ? null : (ims.framework.utils.beans.DateBean) vo.getDateConsentGiven().getBean(); }
public ims.core.vo.ConsentGivenVo buildVo(ims.vo.ValueObjectBeanMap map) { ims.core.vo.ConsentGivenVo vo = null; if (map != null) vo = (ims.core.vo.ConsentGivenVo) map.getValueObject(this); if (vo == null) { vo = new ims.core.vo.ConsentGivenVo(); map.addValueObject(this, vo); vo.populate(map, this); } return vo; }