1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.coeus.s2sgen.impl.budget;
17
18 import org.kuali.coeus.sys.api.model.ScaleTwoDecimal;
19
20 import java.util.ArrayList;
21 import java.util.List;
22
23 public class IndirectCostDto {
24
25
26 private List<IndirectCostDetailsDto> indirectCostDetails;
27 private ScaleTwoDecimal totalIndirectCosts;
28 private ScaleTwoDecimal totalIndirectCostSharing;
29
30
31 public IndirectCostDto() {
32 indirectCostDetails = new ArrayList<IndirectCostDetailsDto>();
33
34 }
35
36 public List<IndirectCostDetailsDto> getIndirectCostDetails() {
37 return indirectCostDetails;
38 }
39
40
41
42
43
44
45 public void setIndirectCostDetails(List<IndirectCostDetailsDto> indirectCostDetails) {
46 this.indirectCostDetails = indirectCostDetails;
47 }
48
49
50
51
52
53
54 public ScaleTwoDecimal getTotalIndirectCosts() {
55 return totalIndirectCosts;
56 }
57
58
59
60
61
62
63 public void setTotalIndirectCosts(ScaleTwoDecimal totalIndirectCosts) {
64 this.totalIndirectCosts = totalIndirectCosts;
65 }
66
67
68
69
70
71
72
73 public ScaleTwoDecimal getTotalIndirectCostSharing() {
74 return totalIndirectCostSharing;
75 }
76
77
78
79
80
81
82 public void setTotalIndirectCostSharing(ScaleTwoDecimal totalIndirectCostSharing) {
83 this.totalIndirectCostSharing = totalIndirectCostSharing;
84 }
85 }