View Javadoc
1   package org.kuali.ole.deliver.bo;
2   
3   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4   
5   import java.sql.Blob;
6   import java.sql.Timestamp;
7   
8   /**
9    * Created by maheswarang on 9/15/14.
10   */
11  public class OLEDeliverNoticeHistory extends PersistableBusinessObjectBase {
12      private String id;
13      private String loanId;
14      private Timestamp noticeSentDate;
15      private String patronId;
16      private String noticeType;
17      private String noticeSendType;
18      private byte[] noticeContent;
19      private String requestId;
20      private String itemBarcode;
21  
22      public String getId() {
23          return id;
24      }
25  
26      public void setId(String id) {
27          this.id = id;
28      }
29  
30      public String getLoanId() {
31          return loanId;
32      }
33  
34      public void setLoanId(String loanId) {
35          this.loanId = loanId;
36      }
37  
38      public Timestamp getNoticeSentDate() {
39          return noticeSentDate;
40      }
41  
42      public void setNoticeSentDate(Timestamp noticeSentDate) {
43          this.noticeSentDate = noticeSentDate;
44      }
45  
46      public String getPatronId() {
47          return patronId;
48      }
49  
50      public void setPatronId(String patronId) {
51          this.patronId = patronId;
52      }
53  
54      public String getNoticeType() {
55          return noticeType;
56      }
57  
58      public void setNoticeType(String noticeType) {
59          this.noticeType = noticeType;
60      }
61  
62      public String getNoticeSendType() {
63          return noticeSendType;
64      }
65  
66      public void setNoticeSendType(String noticeSendType) {
67          this.noticeSendType = noticeSendType;
68      }
69  
70      public void setNoticeContent(byte[] noticeContent) {
71          this.noticeContent = noticeContent;
72      }
73  
74      public byte[] getNoticeContent() {
75          return noticeContent;
76      }
77  
78      public String getRequestId() {
79          return requestId;
80      }
81  
82      public void setRequestId(String requestId) {
83          this.requestId = requestId;
84      }
85  
86      public String getItemBarcode() {
87          return itemBarcode;
88      }
89  
90      public void setItemBarcode(String itemBarcode) {
91          this.itemBarcode = itemBarcode;
92      }
93  }