1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package org.kuali.kfs.sys.businessobject;
21
22 import java.util.LinkedHashMap;
23
24 import org.kuali.kfs.sys.KFSPropertyConstants;
25 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
26
27
28
29
30 public class PaymentSourceWireTransfer extends PersistableBusinessObjectBase {
31
32 private String documentNumber;
33 private String bankName;
34 private String bankRoutingNumber;
35 private String bankCityName;
36 private String bankStateCode;
37 private String bankCountryCode;
38 private String attentionLineText;
39 private String additionalWireText;
40 private String payeeAccountNumber;
41 private String currencyTypeName;
42 private String currencyTypeCode;
43 private boolean wireTransferFeeWaiverIndicator;
44 private String payeeAccountName;
45 private String automatedClearingHouseProfileNumber;
46 private String foreignCurrencyTypeName;
47 private String foreignCurrencyTypeCode;
48
49
50
51
52
53 public PaymentSourceWireTransfer() {
54 wireTransferFeeWaiverIndicator = false;
55 }
56
57
58
59
60
61
62 public String getDocumentNumber() {
63 return documentNumber;
64 }
65
66
67
68
69
70
71
72 public void setDocumentNumber(String documentNumber) {
73 this.documentNumber = documentNumber;
74 }
75
76
77
78
79
80
81 public String getBankName() {
82 return bankName;
83 }
84
85
86
87
88
89
90
91 public void setBankName(String disbursementVoucherBankName) {
92 this.bankName = disbursementVoucherBankName;
93 }
94
95
96
97
98
99
100 public String getBankRoutingNumber() {
101 return bankRoutingNumber;
102 }
103
104
105
106
107
108
109
110 public void setBankRoutingNumber(String disbVchrBankRoutingNumber) {
111 this.bankRoutingNumber = disbVchrBankRoutingNumber;
112 }
113
114
115
116
117
118
119 public String getBankCityName() {
120 return bankCityName;
121 }
122
123
124
125
126
127
128
129 public void setBankCityName(String disbVchrBankCityName) {
130 this.bankCityName = disbVchrBankCityName;
131 }
132
133
134
135
136
137
138 public String getBankStateCode() {
139 return bankStateCode;
140 }
141
142
143
144
145
146
147
148 public void setBankStateCode(String disbVchrBankStateCode) {
149 this.bankStateCode = disbVchrBankStateCode;
150 }
151
152
153
154
155
156
157 public String getBankCountryCode() {
158 return bankCountryCode;
159 }
160
161
162
163
164
165
166
167 public void setBankCountryCode(String disbVchrBankCountryCode) {
168 this.bankCountryCode = disbVchrBankCountryCode;
169 }
170
171
172
173
174
175
176 public String getAttentionLineText() {
177 return attentionLineText;
178 }
179
180
181
182
183
184
185
186 public void setAttentionLineText(String disbVchrAttentionLineText) {
187 this.attentionLineText = disbVchrAttentionLineText;
188 }
189
190
191
192
193
194
195 public String getAdditionalWireText() {
196 return additionalWireText;
197 }
198
199
200
201
202
203
204
205 public void setAdditionalWireText(String disbVchrAdditionalWireText) {
206 this.additionalWireText = disbVchrAdditionalWireText;
207 }
208
209
210
211
212
213
214 public String getPayeeAccountNumber() {
215 return payeeAccountNumber;
216 }
217
218
219
220
221
222
223
224 public void setPayeeAccountNumber(String disbVchrPayeeAccountNumber) {
225 this.payeeAccountNumber = disbVchrPayeeAccountNumber;
226 }
227
228
229
230
231
232
233 public String getCurrencyTypeName() {
234 return currencyTypeName;
235 }
236
237
238
239
240
241
242
243 public void setCurrencyTypeName(String disbVchrCurrencyTypeName) {
244 this.currencyTypeName = disbVchrCurrencyTypeName;
245 }
246
247
248
249
250
251
252
253 public String getForeignCurrencyTypeName() {
254 return foreignCurrencyTypeName;
255 }
256
257
258
259
260
261
262
263
264 public void setForeignCurrencyTypeName(String disbursementVoucherForeignCurrencyTypeName) {
265 this.foreignCurrencyTypeName = disbursementVoucherForeignCurrencyTypeName;
266 }
267
268
269
270
271
272
273 public String getCurrencyTypeCode() {
274 return currencyTypeCode;
275 }
276
277
278
279
280
281
282
283 public void setCurrencyTypeCode(String disbVchrCurrencyTypeCode) {
284 this.currencyTypeCode = disbVchrCurrencyTypeCode;
285 }
286
287
288
289
290
291
292
293 public String getForeignCurrencyTypeCode() {
294 return foreignCurrencyTypeCode;
295 }
296
297
298
299
300
301
302
303 public void setForeignCurrencyTypeCode(String disbursementVoucherForeignCurrencyTypeCode) {
304 this.foreignCurrencyTypeCode = disbursementVoucherForeignCurrencyTypeCode;
305 }
306
307
308
309
310
311
312 public boolean isWireTransferFeeWaiverIndicator() {
313 return wireTransferFeeWaiverIndicator;
314 }
315
316
317
318
319
320
321
322 public void setWireTransferFeeWaiverIndicator(boolean disbursementVoucherWireTransferFeeWaiverIndicator) {
323 this.wireTransferFeeWaiverIndicator = disbursementVoucherWireTransferFeeWaiverIndicator;
324 }
325
326
327
328
329
330
331 public String getPayeeAccountName() {
332 return payeeAccountName;
333 }
334
335
336
337
338
339
340
341 public void setPayeeAccountName(String disbursementVoucherPayeeAccountName) {
342 this.payeeAccountName = disbursementVoucherPayeeAccountName;
343 }
344
345
346
347
348
349
350 public String getAutomatedClearingHouseProfileNumber() {
351 return automatedClearingHouseProfileNumber;
352 }
353
354
355
356
357
358
359
360
361 public void setAutomatedClearingHouseProfileNumber(String disbursementVoucherAutomatedClearingHouseProfileNumber) {
362 this.automatedClearingHouseProfileNumber = disbursementVoucherAutomatedClearingHouseProfileNumber;
363 }
364
365 public void setDisbVchrForeignBankIndicatorName(String name) {
366 }
367
368
369
370
371 protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
372 LinkedHashMap m = new LinkedHashMap();
373 m.put(KFSPropertyConstants.DOCUMENT_NUMBER, this.documentNumber);
374 return m;
375 }
376
377 }