001 /*
002 * Copyright 2011 The Kuali Foundation.
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016 package org.kuali.kfs.module.bc.businessobject;
017
018
019 /**
020 * Total Part of Budget Construction Organization Account Summary Report Business Object.
021 */
022 public class BudgetConstructionOrgAccountSummaryReportTotal {
023 BudgetConstructionAccountSummary bcas;
024 private Integer totalRevenueBaseAmount;
025 private Integer totalGrossBaseAmount;
026 private Integer totalTransferInBaseAmount;
027 private Integer totalNetTransferBaseAmount;
028
029 private Integer totalRevenueReqAmount;
030 private Integer totalGrossReqAmount;
031 private Integer totalTransferInReqAmount;
032 private Integer totalNetTransferReqAmount;
033
034 /**
035 * Default constructor.
036 */
037 public BudgetConstructionOrgAccountSummaryReportTotal() {
038 }
039
040 /**
041 * Gets the totalGrossBaseAmount
042 *
043 * @return Returns the totalGrossBaseAmount.
044 */
045 public Integer getTotalGrossBaseAmount() {
046 return totalGrossBaseAmount;
047 }
048
049 /**
050 * Sets the totalGrossBaseAmount
051 *
052 * @param totalGrossBaseAmount The totalGrossBaseAmount to set.
053 */
054 public void setTotalGrossBaseAmount(Integer totalGrossBaseAmount) {
055 this.totalGrossBaseAmount = totalGrossBaseAmount;
056 }
057
058 /**
059 * Gets the totalGrossReqAmount
060 *
061 * @return Returns the totalGrossReqAmount.
062 */
063 public Integer getTotalGrossReqAmount() {
064 return totalGrossReqAmount;
065 }
066
067 /**
068 * Sets the totalGrossReqAmount
069 *
070 * @param totalGrossReqAmount The totalGrossReqAmount to set.
071 */
072 public void setTotalGrossReqAmount(Integer totalGrossReqAmount) {
073 this.totalGrossReqAmount = totalGrossReqAmount;
074 }
075
076 /**
077 * Gets the totalNetTransferBaseAmount
078 *
079 * @return Returns the totalNetTransferBaseAmount.
080 */
081 public Integer getTotalNetTransferBaseAmount() {
082 return totalNetTransferBaseAmount;
083 }
084
085 /**
086 * Sets the totalNetTransferBaseAmount
087 *
088 * @param totalNetTransferBaseAmount The totalNetTransferBaseAmount to set.
089 */
090 public void setTotalNetTransferBaseAmount(Integer totalNetTransferBaseAmount) {
091 this.totalNetTransferBaseAmount = totalNetTransferBaseAmount;
092 }
093
094 /**
095 * Gets the totalNetTransferReqAmount
096 *
097 * @return Returns the totalNetTransferReqAmount.
098 */
099 public Integer getTotalNetTransferReqAmount() {
100 return totalNetTransferReqAmount;
101 }
102
103 /**
104 * Sets the totalNetTransferReqAmount
105 *
106 * @param totalNetTransferReqAmount The totalNetTransferReqAmount to set.
107 */
108 public void setTotalNetTransferReqAmount(Integer totalNetTransferReqAmount) {
109 this.totalNetTransferReqAmount = totalNetTransferReqAmount;
110 }
111
112 /**
113 * Gets the totalRevenueBaseAmount
114 *
115 * @return Returns the totalRevenueBaseAmount.
116 */
117 public Integer getTotalRevenueBaseAmount() {
118 return totalRevenueBaseAmount;
119 }
120
121 /**
122 * Sets the totalRevenueBaseAmount
123 *
124 * @param totalRevenueBaseAmount The totalRevenueBaseAmount to set.
125 */
126 public void setTotalRevenueBaseAmount(Integer totalRevenueBaseAmount) {
127 this.totalRevenueBaseAmount = totalRevenueBaseAmount;
128 }
129
130 /**
131 * Gets the totalRevenueReqAmount
132 *
133 * @return Returns the totalRevenueReqAmount.
134 */
135 public Integer getTotalRevenueReqAmount() {
136 return totalRevenueReqAmount;
137 }
138
139 /**
140 * Sets the totalRevenueReqAmount
141 *
142 * @param totalRevenueReqAmount The totalRevenueReqAmount to set.
143 */
144 public void setTotalRevenueReqAmount(Integer totalRevenueReqAmount) {
145 this.totalRevenueReqAmount = totalRevenueReqAmount;
146 }
147
148 /**
149 * Gets the totalTransferInBaseAmount
150 *
151 * @return Returns the totalTransferInBaseAmount.
152 */
153 public Integer getTotalTransferInBaseAmount() {
154 return totalTransferInBaseAmount;
155 }
156
157 /**
158 * Sets the totalTransferInBaseAmount
159 *
160 * @param totalTransferInBaseAmount The totalTransferInBaseAmount to set.
161 */
162 public void setTotalTransferInBaseAmount(Integer totalTransferInBaseAmount) {
163 this.totalTransferInBaseAmount = totalTransferInBaseAmount;
164 }
165
166 /**
167 * Gets the totalTransferInReqAmount
168 *
169 * @return Returns the totalTransferInReqAmount.
170 */
171 public Integer getTotalTransferInReqAmount() {
172 return totalTransferInReqAmount;
173 }
174
175 /**
176 * Sets the totalTransferInReqAmount
177 *
178 * @param totalTransferInReqAmount The totalTransferInReqAmount to set.
179 */
180 public void setTotalTransferInReqAmount(Integer totalTransferInReqAmount) {
181 this.totalTransferInReqAmount = totalTransferInReqAmount;
182 }
183
184 /**
185 * Gets the budgetConstructionAccountSummary
186 *
187 * @return Returns the bcas.
188 */
189 public BudgetConstructionAccountSummary getBcas() {
190 return bcas;
191 }
192
193 /**
194 * Sets the budgetConstructionAccountSummary
195 *
196 * @param bcas The budgetConstructionAccountSummary to set.
197 */
198 public void setBcas(BudgetConstructionAccountSummary bcas) {
199 this.bcas = bcas;
200 }
201 }