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