1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.kuali.coeus.s2sgen.impl.budget;
20
21 import org.kuali.coeus.sys.api.model.ScaleTwoDecimal;
22
23 import java.util.ArrayList;
24 import java.util.List;
25
26 public class BudgetSummaryDto {
27
28
29 private String proposalNumber;
30 private int version;
31 private List<BudgetPeriodDto> budgetPeriods;
32 private String finalVersionFlag;
33 private ScaleTwoDecimal cumTotalFundsForSrPersonnel = ScaleTwoDecimal.ZERO;
34 private ScaleTwoDecimal cumTotalFundsForOtherPersonnel = ScaleTwoDecimal.ZERO;
35 private ScaleTwoDecimal cumTotalFundsForPersonnel = ScaleTwoDecimal.ZERO;
36 private ScaleTwoDecimal cumNumOtherPersonnel = ScaleTwoDecimal.ZERO;
37 private ScaleTwoDecimal cumEquipmentFunds = ScaleTwoDecimal.ZERO;
38 private ScaleTwoDecimal cumTravel = ScaleTwoDecimal.ZERO;
39 private ScaleTwoDecimal cumDomesticTravel = ScaleTwoDecimal.ZERO;
40 private ScaleTwoDecimal cumForeignTravel = ScaleTwoDecimal.ZERO;
41
42 private List<OtherDirectCostInfoDto> otherDirect=new ArrayList<OtherDirectCostInfoDto>();
43
44 private ScaleTwoDecimal partStipendCost = ScaleTwoDecimal.ZERO;
45 private ScaleTwoDecimal partTravelCost = ScaleTwoDecimal.ZERO;
46 private ScaleTwoDecimal partOtherCost = ScaleTwoDecimal.ZERO;
47 private ScaleTwoDecimal partSubsistence = ScaleTwoDecimal.ZERO;
48 private ScaleTwoDecimal partTuition = ScaleTwoDecimal.ZERO;
49 private int participantCount;
50
51 private ScaleTwoDecimal cumTotalDirectCosts = ScaleTwoDecimal.ZERO;
52 private ScaleTwoDecimal cumTotalIndirectCosts = ScaleTwoDecimal.ZERO;
53 private ScaleTwoDecimal cumTotalCosts = ScaleTwoDecimal.ZERO;
54 private ScaleTwoDecimal cumFee = ScaleTwoDecimal.ZERO;
55
56
57 private ScaleTwoDecimal cumTotalCostSharing = ScaleTwoDecimal.ZERO;
58 private ScaleTwoDecimal cumTotalNonFundsForSrPersonnel = ScaleTwoDecimal.ZERO;
59 private ScaleTwoDecimal cumTotalNonFundsForOtherPersonnel = ScaleTwoDecimal.ZERO;
60 private ScaleTwoDecimal cumTotalNonFundsForPersonnel = ScaleTwoDecimal.ZERO;
61 private ScaleTwoDecimal cumTravelNonFund = ScaleTwoDecimal.ZERO;
62 private ScaleTwoDecimal cumDomesticTravelNonFund = ScaleTwoDecimal.ZERO;
63 private ScaleTwoDecimal cumForeignTravelNonFund = ScaleTwoDecimal.ZERO;
64 private ScaleTwoDecimal partStipendCostSharing = ScaleTwoDecimal.ZERO;
65 private ScaleTwoDecimal partTravelCostSharing = ScaleTwoDecimal.ZERO;
66 private ScaleTwoDecimal partSubsistenceCostSharing = ScaleTwoDecimal.ZERO;
67 private ScaleTwoDecimal partTuitionCostSharing = ScaleTwoDecimal.ZERO;
68 private ScaleTwoDecimal partOtherCostSharing = ScaleTwoDecimal.ZERO;
69 private ScaleTwoDecimal cumEquipmentNonFunds = ScaleTwoDecimal.ZERO;
70 private ScaleTwoDecimal cumTotalDirectCostSharing = ScaleTwoDecimal.ZERO;
71 private ScaleTwoDecimal cumTotalIndirectCostSharing = ScaleTwoDecimal.ZERO;
72
73
74
75
76
77
78
79 public String getProposalNumber() {
80 return proposalNumber;
81 }
82
83
84
85
86
87
88
89 public void setProposalNumber(String proposalNumber) {
90 this.proposalNumber = proposalNumber;
91 }
92
93
94
95
96
97
98 public int getVersion() {
99 return version;
100 }
101
102
103
104
105
106
107 public void setVersion(int version) {
108 this.version = version;
109 }
110
111
112
113
114
115
116 public String getFinalVersionFlag() {
117 return finalVersionFlag;
118 }
119
120
121
122
123
124
125 public void setFinalVersionFlag(String finalVersionFlag) {
126 this.finalVersionFlag = finalVersionFlag;
127 }
128
129
130
131
132
133
134 public List<BudgetPeriodDto> getBudgetPeriods() {
135 return budgetPeriods;
136 }
137
138
139
140
141
142
143 public void setBudgetPeriods(List<BudgetPeriodDto> budgetPeriods) {
144 this.budgetPeriods = budgetPeriods;
145 }
146
147
148
149
150
151
152
153 public ScaleTwoDecimal getCumTotalFundsForSrPersonnel() {
154 return cumTotalFundsForSrPersonnel;
155 }
156
157
158
159
160
161
162 public void setCumTotalFundsForSrPersonnel(ScaleTwoDecimal cumTotalFundsForSrPersonnel) {
163 this.cumTotalFundsForSrPersonnel = cumTotalFundsForSrPersonnel;
164 }
165
166
167
168
169
170
171
172 public ScaleTwoDecimal getCumTotalFundsForOtherPersonnel() {
173 return cumTotalFundsForOtherPersonnel;
174 }
175
176
177
178
179
180
181 public void setCumTotalFundsForOtherPersonnel(ScaleTwoDecimal cumTotalFundsForOtherPersonnel) {
182 this.cumTotalFundsForOtherPersonnel = cumTotalFundsForOtherPersonnel;
183 }
184
185
186
187
188
189
190
191 public ScaleTwoDecimal getCumTotalFundsForPersonnel() {
192 return cumTotalFundsForPersonnel;
193 }
194
195
196
197
198
199
200 public void setCumTotalFundsForPersonnel(ScaleTwoDecimal cumTotalFundsForPersonnel) {
201 this.cumTotalFundsForPersonnel = cumTotalFundsForPersonnel;
202 }
203
204
205
206
207
208
209
210 public ScaleTwoDecimal getCumNumOtherPersonnel() {
211 return cumNumOtherPersonnel;
212 }
213
214
215
216
217
218
219 public void setCumNumOtherPersonnel(ScaleTwoDecimal cumNumOtherPersonnel) {
220 this.cumNumOtherPersonnel = cumNumOtherPersonnel;
221 }
222
223
224
225
226
227
228
229 public ScaleTwoDecimal getCumEquipmentFunds() {
230 return cumEquipmentFunds;
231 }
232
233
234
235
236
237
238 public void setCumEquipmentFunds(ScaleTwoDecimal cumEquipmentFunds) {
239 this.cumEquipmentFunds = cumEquipmentFunds;
240 }
241
242
243
244
245
246
247
248 public ScaleTwoDecimal getCumTravel() {
249 return cumTravel;
250 }
251
252
253
254
255
256
257 public void setCumTravel(ScaleTwoDecimal cumTravel) {
258 this.cumTravel = cumTravel;
259 }
260
261
262
263
264
265
266 public ScaleTwoDecimal getCumDomesticTravel() {
267 return cumDomesticTravel;
268 }
269
270
271
272
273
274
275 public void setCumDomesticTravel(ScaleTwoDecimal cumDomesticTravel) {
276 this.cumDomesticTravel = cumDomesticTravel;
277 }
278
279
280
281
282
283
284 public ScaleTwoDecimal getCumForeignTravel() {
285 return cumForeignTravel;
286 }
287
288
289
290
291
292
293 public void setCumForeignTravel(ScaleTwoDecimal cumForeignTravel) {
294 this.cumForeignTravel = cumForeignTravel;
295 }
296
297
298
299
300
301
302
303 public ScaleTwoDecimal getpartOtherCost() {
304 return partOtherCost;
305 }
306
307
308
309
310
311
312 public void setpartOtherCost(ScaleTwoDecimal partOtherCost) {
313 this.partOtherCost = partOtherCost;
314 }
315
316
317
318
319
320
321 public int getparticipantCount() {
322 return participantCount;
323 }
324
325
326
327
328
329
330 public void setparticipantCount(int participantCount) {
331 this.participantCount = participantCount;
332 }
333
334
335
336
337
338
339 public ScaleTwoDecimal getpartTravelCost() {
340 return partTravelCost;
341 }
342
343
344
345
346
347
348 public void setpartTravelCost(ScaleTwoDecimal partTravelCost) {
349 this.partTravelCost = partTravelCost;
350 }
351
352
353
354
355
356
357
358 public ScaleTwoDecimal getpartStipendCost() {
359 return partStipendCost;
360 }
361
362
363
364
365
366
367 public void setpartStipendCost(ScaleTwoDecimal partStipendCost) {
368 this.partStipendCost = partStipendCost;
369 }
370
371
372
373
374
375
376
377 public List<OtherDirectCostInfoDto> getOtherDirectCosts() {
378 return otherDirect;
379 }
380
381
382
383
384
385
386 public void setOtherDirectCosts(List<OtherDirectCostInfoDto> otherDirect) {
387 this.otherDirect = otherDirect;
388 }
389
390
391
392
393
394
395
396 public ScaleTwoDecimal getCumTotalDirectCosts() {
397 return cumTotalDirectCosts;
398 }
399
400
401
402
403
404
405 public void setCumTotalDirectCosts(ScaleTwoDecimal cumTotalDirectCosts) {
406 this.cumTotalDirectCosts = cumTotalDirectCosts;
407 }
408
409
410
411
412
413
414
415 public ScaleTwoDecimal getCumTotalIndirectCosts() {
416 return cumTotalIndirectCosts;
417 }
418
419
420
421
422
423
424 public void setCumTotalIndirectCosts(ScaleTwoDecimal cumTotalIndirectCosts) {
425 this.cumTotalIndirectCosts = cumTotalIndirectCosts;
426 }
427
428
429
430
431
432
433
434 public ScaleTwoDecimal getCumTotalCosts() {
435 return cumTotalCosts;
436 }
437
438
439
440
441
442
443 public void setCumTotalCosts(ScaleTwoDecimal cumTotalCosts) {
444 this.cumTotalCosts = cumTotalCosts;
445 }
446
447
448
449
450
451
452
453 public ScaleTwoDecimal getCumFee() {
454 return cumFee;
455 }
456
457
458
459
460
461
462 public void setCumFee(ScaleTwoDecimal cumFee) {
463 this.cumFee = cumFee;
464 }
465
466
467 public ScaleTwoDecimal getCumTotalCostSharing() {
468 return cumTotalCostSharing;
469 }
470
471 public void setCumTotalCostSharing(ScaleTwoDecimal cumTotalCostSharing) {
472 this.cumTotalCostSharing = cumTotalCostSharing;
473 }
474
475 public ScaleTwoDecimal getCumTotalNonFundsForSrPersonnel() {
476 return cumTotalNonFundsForSrPersonnel;
477 }
478
479 public void setCumTotalNonFundsForSrPersonnel(ScaleTwoDecimal cumTotalNonFundsForSrPersonnel) {
480 this.cumTotalNonFundsForSrPersonnel = cumTotalNonFundsForSrPersonnel;
481 }
482
483 public ScaleTwoDecimal getCumTotalNonFundsForOtherPersonnel() {
484 return cumTotalNonFundsForOtherPersonnel;
485 }
486
487 public void setCumTotalNonFundsForOtherPersonnel(ScaleTwoDecimal cumTotalNonFundsForOtherPersonnel) {
488 this.cumTotalNonFundsForOtherPersonnel = cumTotalNonFundsForOtherPersonnel;
489 }
490
491 public ScaleTwoDecimal getCumTotalNonFundsForPersonnel() {
492 return cumTotalNonFundsForPersonnel;
493 }
494
495 public void setCumTotalNonFundsForPersonnel(ScaleTwoDecimal cumTotalNonFundsForPersonnel) {
496 this.cumTotalNonFundsForPersonnel = cumTotalNonFundsForPersonnel;
497 }
498
499 public ScaleTwoDecimal getCumTravelNonFund() {
500 return cumTravelNonFund;
501 }
502
503 public void setCumTravelNonFund(ScaleTwoDecimal cumTravelNonFund) {
504 this.cumTravelNonFund = cumTravelNonFund;
505 }
506
507 public ScaleTwoDecimal getCumDomesticTravelNonFund() {
508 return cumDomesticTravelNonFund;
509 }
510
511 public void setCumDomesticTravelNonFund(ScaleTwoDecimal cumDomesticTravelNonFund) {
512 this.cumDomesticTravelNonFund = cumDomesticTravelNonFund;
513 }
514
515 public ScaleTwoDecimal getCumForeignTravelNonFund() {
516 return cumForeignTravelNonFund;
517 }
518
519 public void setCumForeignTravelNonFund(ScaleTwoDecimal cumForeignTravelNonFund) {
520 this.cumForeignTravelNonFund = cumForeignTravelNonFund;
521 }
522
523 public ScaleTwoDecimal getPartStipendCostSharing() {
524 return partStipendCostSharing;
525 }
526
527 public void setPartStipendCostSharing(ScaleTwoDecimal partStipendCostSharing) {
528 this.partStipendCostSharing = partStipendCostSharing;
529 }
530
531 public ScaleTwoDecimal getPartTravelCostSharing() {
532 return partTravelCostSharing;
533 }
534
535 public void setPartTravelCostSharing(ScaleTwoDecimal partTravelCostSharing) {
536 this.partTravelCostSharing = partTravelCostSharing;
537 }
538
539 public ScaleTwoDecimal getPartOtherCostSharing() {
540 return partOtherCostSharing;
541 }
542
543 public void setPartOtherCostSharing(ScaleTwoDecimal partOtherCostSharing) {
544 this.partOtherCostSharing = partOtherCostSharing;
545 }
546
547 public ScaleTwoDecimal getCumEquipmentNonFunds() {
548 return cumEquipmentNonFunds;
549 }
550
551 public void setCumEquipmentNonFunds(ScaleTwoDecimal cumEquipmentNonFunds) {
552 this.cumEquipmentNonFunds = cumEquipmentNonFunds;
553 }
554
555 public ScaleTwoDecimal getCumTotalDirectCostSharing() {
556 return cumTotalDirectCostSharing;
557 }
558
559 public void setCumTotalDirectCostSharing(ScaleTwoDecimal cumTotalDirectCostSharing) {
560 this.cumTotalDirectCostSharing = cumTotalDirectCostSharing;
561 }
562
563 public ScaleTwoDecimal getCumTotalIndirectCostSharing() {
564 return cumTotalIndirectCostSharing;
565 }
566
567 public void setCumTotalIndirectCostSharing(ScaleTwoDecimal cumTotalIndirectCostSharing) {
568 this.cumTotalIndirectCostSharing = cumTotalIndirectCostSharing;
569 }
570
571
572
573
574
575
576 public ScaleTwoDecimal getPartSubsistence() {
577 return partSubsistence;
578 }
579
580
581
582
583
584
585 public void setPartSubsistence(ScaleTwoDecimal partSubsistence) {
586 this.partSubsistence = partSubsistence;
587 }
588
589
590
591
592
593
594 public ScaleTwoDecimal getPartTuition() {
595 return partTuition;
596 }
597
598
599
600
601
602
603 public void setPartTuition(ScaleTwoDecimal partTuition) {
604 this.partTuition = partTuition;
605 }
606
607
608
609
610
611
612 public ScaleTwoDecimal getPartSubsistenceCostSharing() {
613 return partSubsistenceCostSharing;
614 }
615
616
617
618
619
620
621 public void setPartSubsistenceCostSharing(ScaleTwoDecimal partSubsistenceCostSharing) {
622 this.partSubsistenceCostSharing = partSubsistenceCostSharing;
623 }
624
625
626
627
628
629
630 public ScaleTwoDecimal getPartTuitionCostSharing() {
631 return partTuitionCostSharing;
632 }
633
634
635
636
637
638
639 public void setPartTuitionCostSharing(ScaleTwoDecimal partTuitionCostSharing) {
640 this.partTuitionCostSharing = partTuitionCostSharing;
641 }
642
643 }