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.sql.Timestamp;
23 import java.util.LinkedHashMap;
24
25 import org.kuali.ole.sys.OLEPropertyConstants;
26 import org.kuali.ole.sys.businessobject.TimestampedBusinessObjectBase;
27 import org.kuali.rice.core.api.util.type.KualiInteger;
28
29 public class PaymentAccountHistory extends TimestampedBusinessObjectBase {
30
31 private KualiInteger id;
32
33 private String accountingChangeCode;
34 private AccountingChangeCode accountingChange;
35
36 private String acctAttributeName;
37 private String acctAttributeOrigValue;
38 private String acctAttributeNewValue;
39 private Timestamp acctChangeDate;
40
41 private KualiInteger paymentAccountDetailId;
42 private PaymentAccountDetail paymentAccountDetail;
43
44 public PaymentAccountHistory() {
45 super();
46 }
47
48
49
50
51
52 public PaymentAccountDetail getPaymentAccountDetail() {
53 return paymentAccountDetail;
54 }
55
56
57
58
59 public void setPaymentAccountDetail(PaymentAccountDetail pad) {
60 this.paymentAccountDetail = pad;
61 }
62
63
64
65
66
67
68 public KualiInteger getId() {
69 return id;
70 }
71
72
73
74
75
76 public String getAcctAttributeName() {
77 return acctAttributeName;
78 }
79
80
81
82
83
84 public String getAcctAttributeNewValue() {
85 return acctAttributeNewValue;
86 }
87
88
89
90
91
92 public String getAcctAttributeOrigValue() {
93 return acctAttributeOrigValue;
94 }
95
96
97
98
99
100 public AccountingChangeCode getAccountingChange() {
101 return accountingChange;
102 }
103
104
105
106
107
108 public Timestamp getAcctChangeDate() {
109 return acctChangeDate;
110 }
111
112
113
114
115 public void setAcctAttributeName(String string) {
116 acctAttributeName = string;
117 }
118
119
120
121
122 public void setAcctAttributeNewValue(String string) {
123 acctAttributeNewValue = string;
124 }
125
126
127
128
129 public void setAcctAttributeOrigValue(String string) {
130 acctAttributeOrigValue = string;
131 }
132
133
134
135
136 public void setAccountingChange(AccountingChangeCode ac) {
137 accountingChange = ac;
138 }
139
140
141
142
143 public void setAcctChangeDate(Timestamp timestamp) {
144 acctChangeDate = timestamp;
145 }
146
147
148
149
150 public void setId(KualiInteger integer) {
151 id = integer;
152 }
153
154
155
156
157
158 public String getAccountingChangeCode() {
159 return accountingChangeCode;
160 }
161
162
163
164
165
166 public void setAccountingChangeCode(String accountingChangeCode) {
167 this.accountingChangeCode = accountingChangeCode;
168 }
169
170
171
172
173
174 protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
175 LinkedHashMap m = new LinkedHashMap();
176
177 m.put(OLEPropertyConstants.ID, this.id);
178
179 return m;
180 }
181
182 }