View Javadoc
1   package org.kuali.ole.batch.form;
2   
3   import org.kuali.ole.batch.bo.*;
4   import org.kuali.rice.krad.web.form.UifFormBase;
5   
6   import java.util.List;
7   
8   /**
9    * Created with IntelliJ IDEA.
10   * To change this template use File | Settings | File Templates.
11   */
12  public class OLEClaimNoticeForm extends UifFormBase {
13  
14  
15      private List<OLEClaimNotice> oleClaimNoticeList;
16  
17  
18      public List<OLEClaimNotice> getOleClaimNoticeList() {
19          return oleClaimNoticeList;
20      }
21  
22      public void setOleClaimNoticeList(List<OLEClaimNotice> oleClaimNoticeList) {
23          this.oleClaimNoticeList = oleClaimNoticeList;
24      }
25  
26  }