1 package org.kuali.ole.select.form;
2
3 import org.kuali.ole.describe.bo.SearchResultDisplayRow;
4 import org.kuali.rice.krad.web.form.UifFormBase;
5
6 import java.util.ArrayList;
7 import java.util.Date;
8 import java.util.List;
9
10
11
12
13
14
15
16
17 public class OLEAnnualStewardshipReportForm extends UifFormBase {
18 private String donorCode;
19 private String status;
20 private Date fromDate;
21 private Date toDate;
22 private int pageSize;
23 List<SearchResultDisplayRow> saerSearchResultDisplayRowList = new ArrayList<SearchResultDisplayRow>();
24
25 public String getDonorCode() {
26 return donorCode;
27 }
28
29 public void setDonorCode(String donorCode) {
30 this.donorCode = donorCode;
31 }
32
33 public String getStatus() {
34 return status;
35 }
36
37 public void setStatus(String status) {
38 this.status = status;
39 }
40
41 public Date getFromDate() {
42 return fromDate;
43 }
44
45 public void setFromDate(Date fromDate) {
46 this.fromDate = fromDate;
47 }
48
49 public Date getToDate() {
50 return toDate;
51 }
52
53 public void setToDate(Date toDate) {
54 this.toDate = toDate;
55 }
56
57 public List<SearchResultDisplayRow> getSaerSearchResultDisplayRowList() {
58 return saerSearchResultDisplayRowList;
59 }
60
61 public void setSaerSearchResultDisplayRowList(List<SearchResultDisplayRow> saerSearchResultDisplayRowList) {
62 this.saerSearchResultDisplayRowList = saerSearchResultDisplayRowList;
63 }
64
65 public int getPageSize() {
66 return pageSize;
67 }
68
69 public void setPageSize(int pageSize) {
70 this.pageSize = pageSize;
71 }
72 }