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