1 package org.kuali.ole.deliver.bo;
2
3 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4
5 import java.math.BigDecimal;
6 import java.sql.Timestamp;
7
8
9
10
11 public class OLEDeliverNotice extends PersistableBusinessObjectBase {
12 private String id;
13 private String loanId;
14 private String noticeType;
15 private Timestamp noticeToBeSendDate;
16 private BigDecimal replacementFeeAmount;
17 private String noticeSendType;
18 private String patronId;
19 private OleLoanDocument oleLoanDocument;
20
21 public String getId() {
22 return id;
23 }
24
25 public void setId(String id) {
26 this.id = id;
27 }
28
29 public String getLoanId() {
30 return loanId;
31 }
32
33 public void setLoanId(String loanId) {
34 this.loanId = loanId;
35 }
36
37 public String getNoticeType() {
38 return noticeType;
39 }
40
41 public void setNoticeType(String noticeType) {
42 this.noticeType = noticeType;
43 }
44
45 public Timestamp getNoticeToBeSendDate() {
46 return noticeToBeSendDate;
47 }
48
49 public void setNoticeToBeSendDate(Timestamp noticeToBeSendDate) {
50 this.noticeToBeSendDate = noticeToBeSendDate;
51 }
52
53 public BigDecimal getReplacementFeeAmount() {
54 return replacementFeeAmount;
55 }
56
57 public void setReplacementFeeAmount(BigDecimal replacementFeeAmount) {
58 this.replacementFeeAmount = replacementFeeAmount;
59 }
60
61 public String getNoticeSendType() {
62 return noticeSendType;
63 }
64
65 public void setNoticeSendType(String noticeSendType) {
66 this.noticeSendType = noticeSendType;
67 }
68
69 public String getPatronId() {
70 return patronId;
71 }
72
73 public void setPatronId(String patronId) {
74 this.patronId = patronId;
75 }
76
77 public OleLoanDocument getOleLoanDocument() {
78 return oleLoanDocument;
79 }
80
81 public void setOleLoanDocument(OleLoanDocument oleLoanDocument) {
82 this.oleLoanDocument = oleLoanDocument;
83 }
84 }