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
10
11
12
13
14
15 public class OLEDeliverNoticeForm extends UifFormBase {
16
17 private List<OLECourtesyNotice> oleCourtesyNoticeList;
18 private List<OLEExpiredRequestNotice> oleExpiredRequestNoticeList;
19 private List<OLEOnHoldNotice> oleOnHoldNoticeList;
20 private List<OLEOnHoldCourtesyNotice> oleOnHoldCourtesyNoticeList;
21 private List<OLEOverDueNotice> oleOverDueNoticeList;
22 private List<OLERecallNotice> oleRecallNoticeList;
23 private List<OLEPickupNotice> olePickupNoticeList;
24
25 public List<OLECourtesyNotice> getOleCourtesyNoticeList() {
26 return oleCourtesyNoticeList;
27 }
28
29 public void setOleCourtesyNoticeList(List<OLECourtesyNotice> oleCourtesyNoticeList) {
30 this.oleCourtesyNoticeList = oleCourtesyNoticeList;
31 }
32
33 public List<OLEExpiredRequestNotice> getOleExpiredRequestNoticeList() {
34 return oleExpiredRequestNoticeList;
35 }
36
37 public void setOleExpiredRequestNoticeList(List<OLEExpiredRequestNotice> oleExpiredRequestNoticeList) {
38 this.oleExpiredRequestNoticeList = oleExpiredRequestNoticeList;
39 }
40
41 public List<OLEOnHoldNotice> getOleOnHoldNoticeList() {
42 return oleOnHoldNoticeList;
43 }
44
45 public void setOleOnHoldNoticeList(List<OLEOnHoldNotice> oleOnHoldNoticeList) {
46 this.oleOnHoldNoticeList = oleOnHoldNoticeList;
47 }
48
49 public List<OLEOnHoldCourtesyNotice> getOleOnHoldCourtesyNoticeList() {
50 return oleOnHoldCourtesyNoticeList;
51 }
52
53 public void setOleOnHoldCourtesyNoticeList(List<OLEOnHoldCourtesyNotice> oleOnHoldCourtesyNoticeList) {
54 this.oleOnHoldCourtesyNoticeList = oleOnHoldCourtesyNoticeList;
55 }
56
57 public List<OLEOverDueNotice> getOleOverDueNoticeList() {
58 return oleOverDueNoticeList;
59 }
60
61 public void setOleOverDueNoticeList(List<OLEOverDueNotice> oleOverDueNoticeList) {
62 this.oleOverDueNoticeList = oleOverDueNoticeList;
63 }
64
65 public List<OLERecallNotice> getOleRecallNoticeList() {
66 return oleRecallNoticeList;
67 }
68
69 public void setOleRecallNoticeList(List<OLERecallNotice> oleRecallNoticeList) {
70 this.oleRecallNoticeList = oleRecallNoticeList;
71 }
72
73 public List<OLEPickupNotice> getOlePickupNoticeList() {
74 return olePickupNoticeList;
75 }
76
77 public void setOlePickupNoticeList(List<OLEPickupNotice> olePickupNoticeList) {
78 this.olePickupNoticeList = olePickupNoticeList;
79 }
80 }