コード例 #1
0
 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();
 }
コード例 #2
0
 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();
 }
コード例 #3
0
 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;
 }