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
22 import org.kuali.coeus.sys.api.model.ScaleTwoDecimal;
23
24 import java.sql.Date;
25 import java.util.ArrayList;
26 import java.util.List;
27
28 public class BudgetPeriodDto {
29
30 private String proposalNumber;
31 private int version;
32 private String finalVersionFlag;
33 private int budgetPeriod;
34 private Date startDate;
35 private Date endDate;
36 private List<KeyPersonDto> keyPersons;
37 private List<KeyPersonDto> extraKeyPersons;
38 private ScaleTwoDecimal totalFundsKeyPersons;
39 private ScaleTwoDecimal totalFundsAttachedKeyPersons;
40 private List<OtherPersonnelDto> otherPersonnel;
41 private ScaleTwoDecimal totalOtherPersonnelFunds;
42 private ScaleTwoDecimal otherPersonnelTotalNumber;
43 private ScaleTwoDecimal totalCompensation;
44 private List<EquipmentDto> equipment;
45 private List<EquipmentDto> extraEquipment;
46 private ScaleTwoDecimal totalFundsEquipment;
47 private ScaleTwoDecimal totalFundsAttachedEquipment;
48 private ScaleTwoDecimal domesticTravelCost;
49 private ScaleTwoDecimal foreignTravelCost;
50 private ScaleTwoDecimal totalTravelCost;
51 private ScaleTwoDecimal partStipendCost;
52 private ScaleTwoDecimal partTravelCost;
53 private ScaleTwoDecimal partOtherCost;
54 private ScaleTwoDecimal partTuition;
55 private ScaleTwoDecimal partSubsistence;
56 private int participantCount;
57 private List<OtherDirectCostInfoDto> otherDirectCosts;
58 private ScaleTwoDecimal directCostsTotal;
59 private IndirectCostDto indirectCosts;
60 private String cognizantFedAgency;
61 private ScaleTwoDecimal totalCosts;
62 private ScaleTwoDecimal totalIndirectCost;
63 private int lineItemCount;
64
65 private ScaleTwoDecimal costSharingAmount;
66 private ScaleTwoDecimal domesticTravelCostSharing;
67 private ScaleTwoDecimal foreignTravelCostSharing;
68 private ScaleTwoDecimal totalTravelCostSharing;
69 private ScaleTwoDecimal partStipendCostSharing;
70 private ScaleTwoDecimal partTravelCostSharing;
71 private ScaleTwoDecimal partTuitionCostSharing;
72 private ScaleTwoDecimal partSubsistenceCostSharing;
73 private ScaleTwoDecimal partOtherCostSharing;
74 private ScaleTwoDecimal totalNonFundsKeyPersons;
75 private ScaleTwoDecimal totalNonFundsAttachedKeyPersons;
76 private ScaleTwoDecimal totalOtherPersonnelNonFunds;
77 private ScaleTwoDecimal totalCompensationCostSharing;
78 private ScaleTwoDecimal totalDirectCostSharing;
79 private ScaleTwoDecimal totalIndirectCostSharing;
80
81 public BudgetPeriodDto() {
82 keyPersons = new ArrayList<KeyPersonDto>();
83 extraKeyPersons = new ArrayList<KeyPersonDto>();
84 equipment = new ArrayList<EquipmentDto>();
85 extraEquipment = new ArrayList<EquipmentDto>();
86 otherDirectCosts = new ArrayList<OtherDirectCostInfoDto>();
87 }
88
89
90
91
92
93
94
95 public String getProposalNumber() {
96 return proposalNumber;
97 }
98
99
100
101
102
103
104
105 public void setProposalNumber(String proposalNumber) {
106 this.proposalNumber = proposalNumber;
107 }
108
109
110
111
112
113
114 public int getVersion() {
115 return version;
116 }
117
118
119
120
121
122
123 public void setVersion(int version) {
124 this.version = version;
125 }
126
127
128
129
130
131
132 public String getFinalVersionFlag() {
133 return finalVersionFlag;
134 }
135
136
137
138
139
140
141 public void setFinalVersionFlag(String finalVersionFlag) {
142 this.finalVersionFlag = finalVersionFlag;
143 }
144
145
146
147
148
149
150 public int getBudgetPeriod() {
151 return budgetPeriod;
152 }
153
154
155
156
157
158
159 public void setBudgetPeriod(int budgetPeriod) {
160 this.budgetPeriod = budgetPeriod;
161 }
162
163
164
165
166
167
168 public Date getStartDate() {
169 return startDate;
170 }
171
172
173
174
175
176
177 public void setStartDate(Date startDate) {
178 this.startDate = startDate;
179 }
180
181
182
183
184
185
186 public Date getEndDate() {
187 return endDate;
188 }
189
190
191
192
193
194
195 public void setEndDate(Date endDate) {
196 this.endDate = endDate;
197 }
198
199
200
201
202
203
204
205 public List<KeyPersonDto> getKeyPersons() {
206 return keyPersons;
207 }
208
209
210
211
212
213
214 public void setKeyPersons(List<KeyPersonDto> keyPersons) {
215 this.keyPersons = keyPersons;
216 }
217
218
219
220
221
222
223
224 public List<KeyPersonDto> getExtraKeyPersons() {
225 return extraKeyPersons;
226 }
227
228
229
230
231
232
233 public void setExtraKeyPersons(List<KeyPersonDto> extraKeyPersons) {
234 this.extraKeyPersons = extraKeyPersons;
235 }
236
237
238
239
240
241
242 public ScaleTwoDecimal getTotalFundsKeyPersons() {
243 return totalFundsKeyPersons;
244 }
245
246
247
248
249
250
251 public void setTotalFundsKeyPersons(ScaleTwoDecimal totalFundsKeyPersons) {
252 this.totalFundsKeyPersons = totalFundsKeyPersons;
253 }
254
255
256
257
258
259
260 public ScaleTwoDecimal getTotalFundsAttachedKeyPersons() {
261 return totalFundsAttachedKeyPersons;
262 }
263
264
265
266
267
268
269 public void setTotalFundsAttachedKeyPersons(ScaleTwoDecimal totalFundsAttachedKeyPersons) {
270 this.totalFundsAttachedKeyPersons = totalFundsAttachedKeyPersons;
271 }
272
273
274
275
276
277
278 public ScaleTwoDecimal getTotalOtherPersonnelFunds() {
279 return totalOtherPersonnelFunds;
280 }
281
282
283
284
285
286
287 public void setTotalOtherPersonnelFunds(ScaleTwoDecimal totalOtherPersonnelFunds) {
288 this.totalOtherPersonnelFunds = totalOtherPersonnelFunds;
289 }
290
291
292
293
294
295
296 public ScaleTwoDecimal getOtherPersonnelTotalNumber() {
297 return otherPersonnelTotalNumber;
298 }
299
300
301
302
303
304
305 public void setOtherPersonnelTotalNumber(ScaleTwoDecimal otherPersonnelTotalNumber) {
306 this.otherPersonnelTotalNumber = otherPersonnelTotalNumber;
307 }
308
309
310
311
312
313
314
315 public List<OtherPersonnelDto> getOtherPersonnel() {
316 return otherPersonnel;
317 }
318
319
320
321
322
323
324 public void setOtherPersonnel(List<OtherPersonnelDto> otherPersonnel) {
325 this.otherPersonnel = otherPersonnel;
326 }
327
328
329
330
331
332
333 public ScaleTwoDecimal getTotalCompensation() {
334 return totalCompensation;
335 }
336
337
338
339
340
341
342 public void setTotalCompensation(ScaleTwoDecimal totalCompensation) {
343 this.totalCompensation = totalCompensation;
344 }
345
346
347
348
349
350
351 public List<EquipmentDto> getEquipment() {
352 return equipment;
353 }
354
355
356
357
358
359
360 public void setEquipment(List<EquipmentDto> equipment) {
361 this.equipment = equipment;
362 }
363
364
365
366
367
368
369 public List<EquipmentDto> getExtraEquipment() {
370 return extraEquipment;
371 }
372
373
374
375
376
377
378 public void setExtraEquipment(List<EquipmentDto> extraEquipment) {
379 this.extraEquipment = extraEquipment;
380 }
381
382
383
384
385
386
387
388 public ScaleTwoDecimal getDomesticTravelCost() {
389 return domesticTravelCost;
390 }
391
392
393
394
395
396
397 public void setDomesticTravelCost(ScaleTwoDecimal domesticTravelCost) {
398 this.domesticTravelCost = domesticTravelCost;
399 }
400
401
402
403
404
405
406 public ScaleTwoDecimal getForeignTravelCost() {
407 return foreignTravelCost;
408 }
409
410
411
412
413
414
415 public void setForeignTravelCost(ScaleTwoDecimal foreignTravelCost) {
416 this.foreignTravelCost = foreignTravelCost;
417 }
418
419
420
421
422
423
424 public ScaleTwoDecimal getTotalTravelCost() {
425 return totalTravelCost;
426 }
427
428
429
430
431
432
433 public void setTotalTravelCost(ScaleTwoDecimal totalTravelCost) {
434 this.totalTravelCost = totalTravelCost;
435 }
436
437
438
439
440
441
442
443 public ScaleTwoDecimal getpartOtherCost() {
444 return partOtherCost;
445 }
446
447
448
449
450
451
452 public void setpartOtherCost(ScaleTwoDecimal partOtherCost) {
453 this.partOtherCost = partOtherCost;
454 }
455
456
457
458
459
460
461 public int getparticipantCount() {
462 return participantCount;
463 }
464
465
466
467
468
469
470 public void setparticipantCount(int participantCount) {
471 this.participantCount = participantCount;
472 }
473
474
475
476
477
478
479 public ScaleTwoDecimal getpartTravelCost() {
480 return partTravelCost;
481 }
482
483
484
485
486
487
488 public void setpartTravelCost(ScaleTwoDecimal partTravelCost) {
489 this.partTravelCost = partTravelCost;
490 }
491
492
493
494
495
496
497
498 public ScaleTwoDecimal getpartStipendCost() {
499 return partStipendCost;
500 }
501
502
503
504
505
506
507 public void setpartStipendCost(ScaleTwoDecimal partStipendCost) {
508 this.partStipendCost = partStipendCost;
509 }
510
511
512
513
514
515
516
517 public List<OtherDirectCostInfoDto> getOtherDirectCosts() {
518 return otherDirectCosts;
519 }
520
521
522
523
524
525
526 public void setOtherDirectCosts(List<OtherDirectCostInfoDto> otherDirectCosts) {
527 this.otherDirectCosts = otherDirectCosts;
528 }
529
530
531
532
533
534
535 public ScaleTwoDecimal getDirectCostsTotal() {
536 return directCostsTotal;
537 }
538
539
540
541
542
543
544 public void setDirectCostsTotal(ScaleTwoDecimal directCostsTotal) {
545 this.directCostsTotal = directCostsTotal;
546 }
547
548
549
550
551
552
553 public IndirectCostDto getIndirectCosts() {
554 return indirectCosts;
555 }
556
557
558
559
560
561
562 public void setIndirectCosts(IndirectCostDto indirectCosts) {
563 this.indirectCosts = indirectCosts;
564 }
565
566
567
568
569
570
571
572 public String getCognizantFedAgency() {
573 return cognizantFedAgency;
574 }
575
576
577
578
579
580
581 public void setCognizantFedAgency(String cognizantFedAgency) {
582 this.cognizantFedAgency = cognizantFedAgency;
583 }
584
585
586
587
588
589
590 public ScaleTwoDecimal getTotalCosts() {
591 return totalCosts;
592 }
593
594
595
596
597
598
599 public void setTotalCosts(ScaleTwoDecimal totalCosts) {
600 this.totalCosts = totalCosts;
601 }
602
603
604
605
606
607
608
609 public ScaleTwoDecimal getCostSharingAmount() {
610 return costSharingAmount==null? ScaleTwoDecimal.ZERO:costSharingAmount;
611 }
612
613
614
615
616
617
618 public void setCostSharingAmount(ScaleTwoDecimal costSharingAmount) {
619 this.costSharingAmount = costSharingAmount;
620 }
621
622 public ScaleTwoDecimal getDomesticTravelCostSharing() {
623 return domesticTravelCostSharing==null? ScaleTwoDecimal.ZERO:domesticTravelCostSharing;
624 }
625
626 public void setDomesticTravelCostSharing(ScaleTwoDecimal domesticTravelCostSharing) {
627 this.domesticTravelCostSharing = domesticTravelCostSharing;
628 }
629
630 public ScaleTwoDecimal getForeignTravelCostSharing() {
631 return foreignTravelCostSharing==null? ScaleTwoDecimal.ZERO:foreignTravelCostSharing;
632 }
633
634 public void setForeignTravelCostSharing(ScaleTwoDecimal foreignTravelCostSharing) {
635 this.foreignTravelCostSharing = foreignTravelCostSharing;
636 }
637
638 public ScaleTwoDecimal getTotalTravelCostSharing() {
639 return totalTravelCostSharing==null? ScaleTwoDecimal.ZERO:totalTravelCostSharing;
640 }
641
642 public void setTotalTravelCostSharing(ScaleTwoDecimal totalTravelCostSharing) {
643 this.totalTravelCostSharing = totalTravelCostSharing;
644 }
645
646 public ScaleTwoDecimal getPartStipendCostSharing() {
647 return partStipendCostSharing==null? ScaleTwoDecimal.ZERO:partStipendCostSharing;
648 }
649
650 public void setPartStipendCostSharing(ScaleTwoDecimal partStipendCostSharing) {
651 this.partStipendCostSharing = partStipendCostSharing;
652 }
653
654 public ScaleTwoDecimal getPartTravelCostSharing() {
655 return partTravelCostSharing==null? ScaleTwoDecimal.ZERO:partTravelCostSharing;
656 }
657
658 public void setPartTravelCostSharing(ScaleTwoDecimal partTravelCostSharing) {
659 this.partTravelCostSharing = partTravelCostSharing;
660 }
661
662 public ScaleTwoDecimal getPartOtherCostSharing() {
663 return partOtherCostSharing==null? ScaleTwoDecimal.ZERO:partOtherCostSharing;
664 }
665
666 public void setPartOtherCostSharing(ScaleTwoDecimal partOtherCostSharing) {
667 this.partOtherCostSharing = partOtherCostSharing;
668 }
669
670 public ScaleTwoDecimal getTotalNonFundsKeyPersons() {
671 return totalNonFundsKeyPersons;
672 }
673
674 public void setTotalNonFundsKeyPersons(ScaleTwoDecimal totalNonFundsKeyPersons) {
675 this.totalNonFundsKeyPersons = totalNonFundsKeyPersons;
676 }
677
678 public ScaleTwoDecimal getTotalNonFundsAttachedKeyPersons() {
679 return totalNonFundsAttachedKeyPersons;
680 }
681
682 public void setTotalNonFundsAttachedKeyPersons(ScaleTwoDecimal totalNonFundsAttachedKeyPersons) {
683 this.totalNonFundsAttachedKeyPersons = totalNonFundsAttachedKeyPersons;
684 }
685
686 public ScaleTwoDecimal getTotalOtherPersonnelNonFunds() {
687 return totalOtherPersonnelNonFunds;
688 }
689
690 public void setTotalOtherPersonnelNonFunds(ScaleTwoDecimal totalOtherPersonnelNonFunds) {
691 this.totalOtherPersonnelNonFunds = totalOtherPersonnelNonFunds;
692 }
693
694 public ScaleTwoDecimal getTotalCompensationCostSharing() {
695 return totalCompensationCostSharing==null? ScaleTwoDecimal.ZERO:totalCompensationCostSharing;
696 }
697
698 public void setTotalCompensationCostSharing(ScaleTwoDecimal totalCompensationCostSharing) {
699 this.totalCompensationCostSharing = totalCompensationCostSharing;
700 }
701
702 public ScaleTwoDecimal getTotalDirectCostSharing() {
703 return totalDirectCostSharing==null? ScaleTwoDecimal.ZERO:totalDirectCostSharing;
704 }
705
706 public void setTotalDirectCostSharing(ScaleTwoDecimal totalDirectCostSharing) {
707 this.totalDirectCostSharing = totalDirectCostSharing;
708 }
709
710 public ScaleTwoDecimal getTotalIndirectCostSharing() {
711 return totalIndirectCostSharing==null? ScaleTwoDecimal.ZERO:totalIndirectCostSharing;
712 }
713
714 public void setTotalIndirectCostSharing(ScaleTwoDecimal totalIndirectCostSharing) {
715 this.totalIndirectCostSharing = totalIndirectCostSharing;
716 }
717
718
719
720
721
722
723
724 public ScaleTwoDecimal getTotalFundsEquipment() {
725 return totalFundsEquipment;
726 }
727
728
729
730
731
732
733 public void setTotalFundsEquipment(ScaleTwoDecimal totalFundsEquipment) {
734 this.totalFundsEquipment = totalFundsEquipment;
735 }
736
737
738
739
740
741
742 public ScaleTwoDecimal getTotalFundsAttachedEquipment() {
743 return totalFundsAttachedEquipment;
744 }
745
746
747
748
749
750
751 public void setTotalFundsAttachedEquipment(ScaleTwoDecimal totalFundsAttachedEquipment) {
752 this.totalFundsAttachedEquipment = totalFundsAttachedEquipment;
753 }
754
755
756
757
758
759
760 public ScaleTwoDecimal getTotalIndirectCost() {
761 return totalIndirectCost;
762 }
763
764
765
766
767
768
769 public void setTotalIndirectCost(ScaleTwoDecimal totalIndirectCost) {
770 this.totalIndirectCost = totalIndirectCost;
771 }
772
773
774
775
776
777
778 public ScaleTwoDecimal getPartTuition() {
779 return partTuition;
780 }
781
782
783
784
785
786
787 public void setPartTuition(ScaleTwoDecimal partTuition) {
788 this.partTuition = partTuition;
789 }
790
791
792
793
794
795
796 public ScaleTwoDecimal getPartSubsistence() {
797 return partSubsistence;
798 }
799
800
801
802
803
804
805 public void setPartSubsistence(ScaleTwoDecimal partSubsistence) {
806 this.partSubsistence = partSubsistence;
807 }
808
809
810
811
812
813
814 public ScaleTwoDecimal getPartSubsistenceCostSharing() {
815 return partSubsistenceCostSharing==null? ScaleTwoDecimal.ZERO:partSubsistenceCostSharing;
816 }
817
818
819
820
821
822
823 public void setPartSubsistenceCostSharing(ScaleTwoDecimal partSubsistenceCostSharing) {
824 this.partSubsistenceCostSharing = partSubsistenceCostSharing;
825 }
826
827
828
829
830
831
832 public ScaleTwoDecimal getPartTuitionCostSharing() {
833 return partTuitionCostSharing==null? ScaleTwoDecimal.ZERO:partTuitionCostSharing;
834 }
835
836
837
838
839
840
841 public void setPartTuitionCostSharing(ScaleTwoDecimal partTuitionCostSharing) {
842 this.partTuitionCostSharing = partTuitionCostSharing;
843 }
844
845
846
847
848
849 public int getLineItemCount() {
850 return lineItemCount;
851 }
852
853
854
855
856
857 public void setLineItemCount(int lineItemCount) {
858 this.lineItemCount = lineItemCount;
859 }
860 }