1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package org.kuali.ole.pdp.businessobject;
21
22 import java.util.LinkedHashMap;
23
24 import org.kuali.ole.sys.OLEPropertyConstants;
25 import org.kuali.ole.sys.businessobject.TimestampedBusinessObjectBase;
26 import org.kuali.rice.core.api.util.type.KualiInteger;
27
28 public class PaymentNoteText extends TimestampedBusinessObjectBase {
29
30 private KualiInteger id;
31
32 private KualiInteger paymentDetailId;
33 private PaymentDetail paymentDetail;
34
35 private KualiInteger customerNoteLineNbr;
36 private String customerNoteText;
37
38 public PaymentNoteText() {
39 super();
40 }
41
42
43
44
45
46
47 public KualiInteger getId() {
48 return id;
49 }
50
51
52
53
54 public void setId(KualiInteger paymentNoteId) {
55 this.id = paymentNoteId;
56 }
57
58
59
60
61
62 public KualiInteger getCustomerNoteLineNbr() {
63 return customerNoteLineNbr;
64 }
65
66
67
68
69
70 public String getCustomerNoteText() {
71 return customerNoteText;
72 }
73
74
75
76
77
78 public PaymentDetail getPaymentDetail() {
79 return paymentDetail;
80 }
81
82
83
84
85 public void setCustomerNoteLineNbr(KualiInteger integer) {
86 customerNoteLineNbr = integer;
87 }
88
89
90
91
92 public void setCustomerNoteText(String string) {
93 customerNoteText = string;
94 }
95
96
97
98
99 public void setPaymentDetail(PaymentDetail pd) {
100 paymentDetail = pd;
101 }
102
103
104
105
106
107 protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
108 LinkedHashMap m = new LinkedHashMap();
109
110 m.put(OLEPropertyConstants.ID, this.id);
111
112 return m;
113 }
114
115 }