View Javadoc
1   /*
2    * The Kuali Financial System, a comprehensive financial management system for higher education.
3    * 
4    * Copyright 2005-2014 The Kuali Foundation
5    * 
6    * This program is free software: you can redistribute it and/or modify
7    * it under the terms of the GNU Affero General Public License as
8    * published by the Free Software Foundation, either version 3 of the
9    * License, or (at your option) any later version.
10   * 
11   * This program is distributed in the hope that it will be useful,
12   * but WITHOUT ANY WARRANTY; without even the implied warranty of
13   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   * GNU Affero General Public License for more details.
15   * 
16   * You should have received a copy of the GNU Affero General Public License
17   * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18   */
19  package org.kuali.kfs.module.bc.businessobject;
20  
21  import java.math.BigDecimal;
22  
23  import org.kuali.rice.core.api.util.type.KualiInteger;
24  
25  /**
26   * Budget Construction Organization Account Summary Report Business Object.
27   */
28  public class BudgetConstructionOrgAccountSummaryReport {
29  
30      // Header parts
31      private String fiscalYear;
32      private String orgChartOfAccountsCode;
33      private String orgChartOfAccountDescription;
34      private String chartOfAccountsCode;
35      private String chartOfAccountDescription;
36      private String organizationCode;
37      private String organizationName;
38      private String consHdr;
39      private String fundGroupCode;
40      private String fundGroupName;
41      private String subFundGroupCode;
42      private String subFundGroupDescription;
43      private String baseFy;
44      private String reqFy;
45      private String header1;
46      private String header2;
47      private String header3;
48      private String header4;
49      private String header5;
50      private String header6;
51  
52      // Body parts
53      private String accountNumber;
54      private String subAccountNumber;
55      private String accountNameAndSubAccountName;
56      private String incExpDesc;
57      private KualiInteger baseAmount;
58      private KualiInteger reqAmount;
59      private KualiInteger amountChange;
60      private BigDecimal percentChange = BigDecimal.ZERO;
61  
62      // Total parts
63      private KualiInteger totalRevenueBaseAmount = KualiInteger.ZERO;
64      private KualiInteger totalGrossBaseAmount = KualiInteger.ZERO;
65      private KualiInteger totalTransferInBaseAmount = KualiInteger.ZERO;
66      private KualiInteger totalNetTransferBaseAmount = KualiInteger.ZERO;
67  
68      private KualiInteger totalRevenueReqAmount = KualiInteger.ZERO;
69      private KualiInteger totalGrossReqAmount = KualiInteger.ZERO;
70      private KualiInteger totalTransferInReqAmount = KualiInteger.ZERO;
71      private KualiInteger totalNetTransferReqAmount = KualiInteger.ZERO;
72  
73      private KualiInteger totalRevenueAmountChange = KualiInteger.ZERO;
74      private KualiInteger totalGrossAmountChange = KualiInteger.ZERO;
75      private KualiInteger totalTransferAmountChange = KualiInteger.ZERO;
76      private KualiInteger totalNetTransferAmountChange = KualiInteger.ZERO;
77  
78      private BigDecimal totalRevenuePercentChange = BigDecimal.ZERO;
79      private BigDecimal totalGrossPercentChange = BigDecimal.ZERO;
80      private BigDecimal totalTransferInPercentChange = BigDecimal.ZERO;
81      private BigDecimal totalNetTransferPercentChange = BigDecimal.ZERO;
82  
83      private KualiInteger revExpDifferenceBaseAmount = KualiInteger.ZERO;
84      private KualiInteger revExpDifferenceReqAmount = KualiInteger.ZERO;
85      private KualiInteger revExpDifferenceAmountChange = KualiInteger.ZERO;
86      private BigDecimal revExpDifferencePercentChange = BigDecimal.ZERO;
87  
88      /**
89       * Gets the accountNameAndSubAccountName
90       *
91       * @return Returns the accountNameAndSubAccountName.
92       */
93      public String getAccountNameAndSubAccountName() {
94          return accountNameAndSubAccountName;
95      }
96  
97      /**
98       * Sets the accountNameAndSubAccountName
99       *
100      * @param accountNameAndSubAccountName The accountNameAndSubAccountName to set.
101      */
102     public void setAccountNameAndSubAccountName(String accountNameAndSubAccountName) {
103         this.accountNameAndSubAccountName = accountNameAndSubAccountName;
104     }
105 
106     /**
107      * Gets the accountNumber
108      *
109      * @return Returns the accountNumber.
110      */
111     public String getAccountNumber() {
112         return accountNumber;
113     }
114 
115     /**
116      * Sets the accountNumber
117      *
118      * @param accountNumber The accountNumber to set.
119      */
120     public void setAccountNumber(String accountNumber) {
121         this.accountNumber = accountNumber;
122     }
123 
124     /**
125      * Gets the amountChange
126      *
127      * @return Returns the amountChange.
128      */
129     public KualiInteger getAmountChange() {
130         return amountChange;
131     }
132 
133     /**
134      * Sets the amountChange
135      *
136      * @param amountChange The amountChange to set.
137      */
138     public void setAmountChange(KualiInteger amountChange) {
139         this.amountChange = amountChange;
140     }
141 
142     /**
143      * Gets the baseAmount
144      *
145      * @return Returns the baseAmount.
146      */
147     public KualiInteger getBaseAmount() {
148         return baseAmount;
149     }
150 
151     /**
152      * Sets the baseAmount
153      *
154      * @param baseAmount The baseAmount to set.
155      */
156     public void setBaseAmount(KualiInteger baseAmount) {
157         this.baseAmount = baseAmount;
158     }
159 
160     /**
161      * Gets the baseFy
162      *
163      * @return Returns the baseFy.
164      */
165     public String getBaseFy() {
166         return baseFy;
167     }
168 
169     /**
170      * Sets the baseFy
171      *
172      * @param baseFy The baseFy to set.
173      */
174     public void setBaseFy(String baseFy) {
175         this.baseFy = baseFy;
176     }
177 
178     /**
179      * Gets the consHdr
180      *
181      * @return Returns the consHdr.
182      */
183     public String getConsHdr() {
184         return consHdr;
185     }
186 
187     /**
188      * Sets the consHdr
189      *
190      * @param consHdr The consHdr to set.
191      */
192     public void setConsHdr(String consHdr) {
193         this.consHdr = consHdr;
194     }
195 
196     /**
197      * Gets the fiscalYear
198      *
199      * @return Returns the fiscalYear.
200      */
201     public String getFiscalYear() {
202         return fiscalYear;
203     }
204 
205     /**
206      * Sets the fiscalYear
207      *
208      * @param fiscalYear The fiscalYear to set.
209      */
210     public void setFiscalYear(String fiscalYear) {
211         this.fiscalYear = fiscalYear;
212     }
213 
214     /**
215      * Gets the fundGroupCode
216      *
217      * @return Returns the fundGroupCode.
218      */
219     public String getFundGroupCode() {
220         return fundGroupCode;
221     }
222 
223     /**
224      * Sets the fundGroupCode
225      *
226      * @param fundGroupCode The fundGroupCode to set.
227      */
228     public void setFundGroupCode(String fundGroupCode) {
229         this.fundGroupCode = fundGroupCode;
230     }
231 
232     /**
233      * Gets the header1
234      *
235      * @return Returns the header1.
236      */
237     public String getHeader1() {
238         return header1;
239     }
240 
241     /**
242      * Sets the header1
243      *
244      * @param header1 The header1 to set.
245      */
246     public void setHeader1(String header1) {
247         this.header1 = header1;
248     }
249 
250     /**
251      * Gets the header2
252      *
253      * @return Returns the header2.
254      */
255     public String getHeader2() {
256         return header2;
257     }
258 
259     /**
260      * Sets the header2
261      *
262      * @param header2 The header2 to set.
263      */
264     public void setHeader2(String header2) {
265         this.header2 = header2;
266     }
267 
268     /**
269      * Gets the header3
270      *
271      * @return Returns the header3.
272      */
273     public String getHeader3() {
274         return header3;
275     }
276 
277     /**
278      * Sets the header3
279      *
280      * @param header3 The header3 to set.
281      */
282     public void setHeader3(String header3) {
283         this.header3 = header3;
284     }
285 
286     /**
287      * Gets the header4
288      *
289      * @return Returns the header4.
290      */
291     public String getHeader4() {
292         return header4;
293     }
294 
295     /**
296      * Sets the header4
297      *
298      * @param header4 The header4 to set.
299      */
300     public void setHeader4(String header4) {
301         this.header4 = header4;
302     }
303 
304     /**
305      * Gets the header5
306      *
307      * @return Returns the header5.
308      */
309     public String getHeader5() {
310         return header5;
311     }
312 
313     /**
314      * Sets the header5
315      *
316      * @param header5 The header5 to set.
317      */
318     public void setHeader5(String header5) {
319         this.header5 = header5;
320     }
321 
322     /**
323      * Gets the header6
324      *
325      * @return Returns the header6.
326      */
327     public String getHeader6() {
328         return header6;
329     }
330 
331     /**
332      * Sets the header6
333      *
334      * @param header6 The header6 to set.
335      */
336     public void setHeader6(String header6) {
337         this.header6 = header6;
338     }
339 
340     /**
341      * Gets the incExpDesc
342      *
343      * @return Returns the incExpDesc.
344      */
345     public String getIncExpDesc() {
346         return incExpDesc;
347     }
348 
349     /**
350      * Sets the incExpDesc
351      *
352      * @param incExpDesc The incExpDesc to set.
353      */
354     public void setIncExpDesc(String incExpDesc) {
355         this.incExpDesc = incExpDesc;
356     }
357 
358     /**
359      * Gets the organizationCode
360      *
361      * @return Returns the organizationCode.
362      */
363     public String getOrganizationCode() {
364         return organizationCode;
365     }
366 
367     /**
368      * Sets the organizationCode
369      *
370      * @param organizationCode The organizationCode to set.
371      */
372     public void setOrganizationCode(String organizationCode) {
373         this.organizationCode = organizationCode;
374     }
375 
376     /**
377      * Gets the organizationName
378      *
379      * @return Returns the organizationName.
380      */
381     public String getOrganizationName() {
382         return organizationName;
383     }
384 
385     /**
386      * Sets the organizationName
387      *
388      * @param organizationName The organizationName to set.
389      */
390     public void setOrganizationName(String organizationName) {
391         this.organizationName = organizationName;
392     }
393 
394     /**
395      * Gets the percentChange
396      *
397      * @return Returns the percentChange.
398      */
399     public BigDecimal getPercentChange() {
400         return percentChange;
401     }
402 
403     /**
404      * Sets the percentChange
405      *
406      * @param percentChange The percentChange to set.
407      */
408     public void setPercentChange(BigDecimal percentChange) {
409         this.percentChange = percentChange;
410     }
411 
412     /**
413      * Gets the reqAmount
414      *
415      * @return Returns the reqAmount.
416      */
417     public KualiInteger getReqAmount() {
418         return reqAmount;
419     }
420 
421     /**
422      * Sets the reqAmount
423      *
424      * @param reqAmount The reqAmount to set.
425      */
426     public void setReqAmount(KualiInteger reqAmount) {
427         this.reqAmount = reqAmount;
428     }
429 
430     /**
431      * Gets the reqFy
432      *
433      * @return Returns the reqFy.
434      */
435     public String getReqFy() {
436         return reqFy;
437     }
438 
439     /**
440      * Sets the reqFy
441      *
442      * @param reqFy The reqFy to set.
443      */
444     public void setReqFy(String reqFy) {
445         this.reqFy = reqFy;
446     }
447 
448     /**
449      * Gets the revExpDifferenceAmountChange
450      *
451      * @return Returns the revExpDifferenceAmountChange.
452      */
453     public KualiInteger getRevExpDifferenceAmountChange() {
454         return revExpDifferenceAmountChange;
455     }
456 
457     /**
458      * Sets the revExpDifferenceAmountChange
459      *
460      * @param revExpDifferenceAmountChange The revExpDifferenceAmountChange to set.
461      */
462     public void setRevExpDifferenceAmountChange(KualiInteger revExpDifferenceAmountChange) {
463         this.revExpDifferenceAmountChange = revExpDifferenceAmountChange;
464     }
465 
466     /**
467      * Gets the revExpDifferenceBaseAmount
468      *
469      * @return Returns the revExpDifferenceBaseAmount.
470      */
471     public KualiInteger getRevExpDifferenceBaseAmount() {
472         return revExpDifferenceBaseAmount;
473     }
474 
475     /**
476      * Sets the revExpDifferenceBaseAmount
477      *
478      * @param revExpDifferenceBaseAmount The revExpDifferenceBaseAmount to set.
479      */
480     public void setRevExpDifferenceBaseAmount(KualiInteger revExpDifferenceBaseAmount) {
481         this.revExpDifferenceBaseAmount = revExpDifferenceBaseAmount;
482     }
483 
484     /**
485      * Gets the revExpDifferencePercentChange
486      *
487      * @return Returns the revExpDifferencePercentChange.
488      */
489     public BigDecimal getRevExpDifferencePercentChange() {
490         return revExpDifferencePercentChange;
491     }
492 
493     /**
494      * Sets the revExpDifferencePercentChange
495      *
496      * @param revExpDifferencePercentChange The revExpDifferencePercentChange to set.
497      */
498     public void setRevExpDifferencePercentChange(BigDecimal revExpDifferencePercentChange) {
499         this.revExpDifferencePercentChange = revExpDifferencePercentChange;
500     }
501 
502     /**
503      * Gets the revExpDifferenceReqAmount
504      *
505      * @return Returns the revExpDifferenceReqAmount.
506      */
507     public KualiInteger getRevExpDifferenceReqAmount() {
508         return revExpDifferenceReqAmount;
509     }
510 
511     /**
512      * Sets the revExpDifferenceReqAmount
513      *
514      * @param revExpDifferenceReqAmount The revExpDifferenceReqAmount to set.
515      */
516     public void setRevExpDifferenceReqAmount(KualiInteger revExpDifferenceReqAmount) {
517         this.revExpDifferenceReqAmount = revExpDifferenceReqAmount;
518     }
519 
520     /**
521      * Gets the subAccountNumber
522      *
523      * @return Returns the subAccountNumber.
524      */
525     public String getSubAccountNumber() {
526         return subAccountNumber;
527     }
528 
529     /**
530      * Sets the subAccountNumber
531      *
532      * @param subAccountNumber The subAccountNumber to set.
533      */
534     public void setSubAccountNumber(String subAccountNumber) {
535         this.subAccountNumber = subAccountNumber;
536     }
537 
538     /**
539      * Gets the subFundGroupCode
540      *
541      * @return Returns the subFundGroupCode.
542      */
543     public String getSubFundGroupCode() {
544         return subFundGroupCode;
545     }
546 
547     /**
548      * Sets the subFundGroupCode
549      *
550      * @param subFundGroupCode The subFundGroupCode to set.
551      */
552     public void setSubFundGroupCode(String subFundGroupCode) {
553         this.subFundGroupCode = subFundGroupCode;
554     }
555 
556     /**
557      * Gets the subFundGroupDescription
558      *
559      * @return Returns the subFundGroupDescription.
560      */
561     public String getSubFundGroupDescription() {
562         return subFundGroupDescription;
563     }
564 
565     /**
566      * Sets the subFundGroupDescription
567      *
568      * @param subFundGroupDescription The subFundGroupDescription to set.
569      */
570     public void setSubFundGroupDescription(String subFundGroupDescription) {
571         this.subFundGroupDescription = subFundGroupDescription;
572     }
573 
574     /**
575      * Gets the totalGrossAmountChange
576      *
577      * @return Returns the totalGrossAmountChange.
578      */
579     public KualiInteger getTotalGrossAmountChange() {
580         return totalGrossAmountChange;
581     }
582 
583     /**
584      * Sets the totalGrossAmountChange
585      *
586      * @param totalGrossAmountChange The totalGrossAmountChange to set.
587      */
588     public void setTotalGrossAmountChange(KualiInteger totalGrossAmountChange) {
589         this.totalGrossAmountChange = totalGrossAmountChange;
590     }
591 
592     /**
593      * Gets the totalGrossBaseAmount
594      *
595      * @return Returns the totalGrossBaseAmount.
596      */
597     public KualiInteger getTotalGrossBaseAmount() {
598         return totalGrossBaseAmount;
599     }
600 
601     /**
602      * Sets the totalGrossBaseAmount
603      *
604      * @param totalGrossBaseAmount The totalGrossBaseAmount to set.
605      */
606     public void setTotalGrossBaseAmount(KualiInteger totalGrossBaseAmount) {
607         this.totalGrossBaseAmount = totalGrossBaseAmount;
608     }
609 
610     /**
611      * Gets the totalGrossPercentChange
612      *
613      * @return Returns the totalGrossPercentChange.
614      */
615     public BigDecimal getTotalGrossPercentChange() {
616         return totalGrossPercentChange;
617     }
618 
619     /**
620      * Sets the totalGrossPercentChange
621      *
622      * @param totalGrossPercentChange The totalGrossPercentChange to set.
623      */
624     public void setTotalGrossPercentChange(BigDecimal totalGrossPercentChange) {
625         this.totalGrossPercentChange = totalGrossPercentChange;
626     }
627 
628     /**
629      * Gets the totalGrossReqAmount
630      *
631      * @return Returns the totalGrossReqAmount.
632      */
633     public KualiInteger getTotalGrossReqAmount() {
634         return totalGrossReqAmount;
635     }
636 
637     /**
638      * Sets the totalGrossReqAmount
639      *
640      * @param totalGrossReqAmount The totalGrossReqAmount to set.
641      */
642     public void setTotalGrossReqAmount(KualiInteger totalGrossReqAmount) {
643         this.totalGrossReqAmount = totalGrossReqAmount;
644     }
645 
646     /**
647      * Gets the totalNetTransferAmountChange
648      *
649      * @return Returns the totalNetTransferAmountChange.
650      */
651     public KualiInteger getTotalNetTransferAmountChange() {
652         return totalNetTransferAmountChange;
653     }
654 
655     /**
656      * Sets the totalNetTransferAmountChange
657      *
658      * @param totalNetTransferAmountChange The totalNetTransferAmountChange to set.
659      */
660     public void setTotalNetTransferAmountChange(KualiInteger totalNetTransferAmountChange) {
661         this.totalNetTransferAmountChange = totalNetTransferAmountChange;
662     }
663 
664     /**
665      * Gets the totalNetTransferBaseAmount
666      *
667      * @return Returns the totalNetTransferBaseAmount.
668      */
669     public KualiInteger getTotalNetTransferBaseAmount() {
670         return totalNetTransferBaseAmount;
671     }
672 
673     /**
674      * Sets the totalNetTransferBaseAmount
675      *
676      * @param totalNetTransferBaseAmount The totalNetTransferBaseAmount to set.
677      */
678     public void setTotalNetTransferBaseAmount(KualiInteger totalNetTransferBaseAmount) {
679         this.totalNetTransferBaseAmount = totalNetTransferBaseAmount;
680     }
681 
682     /**
683      * Gets the totalNetTransferPercentChange
684      *
685      * @return Returns the totalNetTransferPercentChange.
686      */
687     public BigDecimal getTotalNetTransferPercentChange() {
688         return totalNetTransferPercentChange;
689     }
690 
691     /**
692      * Sets the totalNetTransferPercentChange
693      *
694      * @param totalNetTransferPercentChange The totalNetTransferPercentChange to set.
695      */
696     public void setTotalNetTransferPercentChange(BigDecimal totalNetTransferPercentChange) {
697         this.totalNetTransferPercentChange = totalNetTransferPercentChange;
698     }
699 
700     /**
701      * Gets the totalNetTransferReqAmount
702      *
703      * @return Returns the totalNetTransferReqAmount.
704      */
705     public KualiInteger getTotalNetTransferReqAmount() {
706         return totalNetTransferReqAmount;
707     }
708 
709     /**
710      * Sets the totalNetTransferReqAmount
711      *
712      * @param totalNetTransferReqAmount The totalNetTransferReqAmount to set.
713      */
714     public void setTotalNetTransferReqAmount(KualiInteger totalNetTransferReqAmount) {
715         this.totalNetTransferReqAmount = totalNetTransferReqAmount;
716     }
717 
718     /**
719      * Gets the totalRevenueAmountChange
720      *
721      * @return Returns the totalRevenueAmountChange.
722      */
723     public KualiInteger getTotalRevenueAmountChange() {
724         return totalRevenueAmountChange;
725     }
726 
727     /**
728      * Sets the totalRevenueAmountChange
729      *
730      * @param totalRevenueAmountChange The totalRevenueAmountChange to set.
731      */
732     public void setTotalRevenueAmountChange(KualiInteger totalRevenueAmountChange) {
733         this.totalRevenueAmountChange = totalRevenueAmountChange;
734     }
735 
736     /**
737      * Gets the totalRevenueBaseAmount
738      *
739      * @return Returns the totalRevenueBaseAmount.
740      */
741     public KualiInteger getTotalRevenueBaseAmount() {
742         return totalRevenueBaseAmount;
743     }
744 
745     /**
746      * Sets the totalRevenueBaseAmount
747      *
748      * @param totalRevenueBaseAmount The totalRevenueBaseAmount to set.
749      */
750     public void setTotalRevenueBaseAmount(KualiInteger totalRevenueBaseAmount) {
751         this.totalRevenueBaseAmount = totalRevenueBaseAmount;
752     }
753 
754     /**
755      * Gets the totalRevenuePercentChange
756      *
757      * @return Returns the totalRevenuePercentChange.
758      */
759     public BigDecimal getTotalRevenuePercentChange() {
760         return totalRevenuePercentChange;
761     }
762 
763     /**
764      * Sets the totalRevenuePercentChange
765      *
766      * @param totalRevenuePercentChange The totalRevenuePercentChange to set.
767      */
768     public void setTotalRevenuePercentChange(BigDecimal totalRevenuePercentChange) {
769         this.totalRevenuePercentChange = totalRevenuePercentChange;
770     }
771 
772     /**
773      * Gets the payrollEndDateFiscalPeriod
774      *
775      * @return Returns the payrollEndDateFiscalPeriod.
776      */
777     public KualiInteger getTotalRevenueReqAmount() {
778         return totalRevenueReqAmount;
779     }
780 
781     /**
782      * Sets the payrollEndDateFiscalPeriod
783      *
784      * @param payrollEndDateFiscalPeriod The payrollEndDateFiscalPeriod to set.
785      */
786     public void setTotalRevenueReqAmount(KualiInteger totalRevenueReqAmount) {
787         this.totalRevenueReqAmount = totalRevenueReqAmount;
788     }
789 
790     /**
791      * Gets the totalTransferAmountChange
792      *
793      * @return Returns the totalTransferAmountChange.
794      */
795     public KualiInteger getTotalTransferAmountChange() {
796         return totalTransferAmountChange;
797     }
798 
799     /**
800      * Sets the totalTransferAmountChange
801      *
802      * @param totalTransferAmountChange The totalTransferAmountChange to set.
803      */
804     public void setTotalTransferAmountChange(KualiInteger totalTransferAmountChange) {
805         this.totalTransferAmountChange = totalTransferAmountChange;
806     }
807 
808     /**
809      * Gets the totalTransferInBaseAmount
810      *
811      * @return Returns the totalTransferInBaseAmount.
812      */
813     public KualiInteger getTotalTransferInBaseAmount() {
814         return totalTransferInBaseAmount;
815     }
816 
817     /**
818      * Sets the totalTransferInBaseAmount
819      *
820      * @param totalTransferInBaseAmount The totalTransferInBaseAmount to set.
821      */
822     public void setTotalTransferInBaseAmount(KualiInteger totalTransferInBaseAmount) {
823         this.totalTransferInBaseAmount = totalTransferInBaseAmount;
824     }
825 
826     /**
827      * Gets the totalTransferInPercentChange
828      *
829      * @return Returns the totalTransferInPercentChange.
830      */
831     public BigDecimal getTotalTransferInPercentChange() {
832         return totalTransferInPercentChange;
833     }
834 
835     /**
836      * Sets the totalTransferInPercentChange
837      *
838      * @param totalTransferInPercentChange The totalTransferInPercentChange to set.
839      */
840     public void setTotalTransferInPercentChange(BigDecimal totalTransferInPercentChange) {
841         this.totalTransferInPercentChange = totalTransferInPercentChange;
842     }
843 
844     /**
845      * Gets the totalTransferInReqAmount
846      *
847      * @return Returns the totalTransferInReqAmount.
848      */
849     public KualiInteger getTotalTransferInReqAmount() {
850         return totalTransferInReqAmount;
851     }
852 
853     /**
854      * Sets the totalTransferInReqAmount
855      *
856      * @param totalTransferInReqAmount The totalTransferInReqAmount to set.
857      */
858     public void setTotalTransferInReqAmount(KualiInteger totalTransferInReqAmount) {
859         this.totalTransferInReqAmount = totalTransferInReqAmount;
860     }
861 
862     /**
863      * Gets the fundGroupName
864      *
865      * @return Returns the fundGroupName.
866      */
867     public String getFundGroupName() {
868         return fundGroupName;
869     }
870 
871     /**
872      * Sets the fundGroupName
873      *
874      * @param fundGroupName The fundGroupName to set.
875      */
876     public void setFundGroupName(String fundGroupName) {
877         this.fundGroupName = fundGroupName;
878     }
879 
880     /**
881      * Gets the chartOfAccountDescription
882      *
883      * @return Returns the chartOfAccountDescription.
884      */
885     public String getChartOfAccountDescription() {
886         return chartOfAccountDescription;
887     }
888 
889     /**
890      * Sets the chartOfAccountDescription
891      *
892      * @param chartOfAccountDescription The chartOfAccountDescription to set.
893      */
894     public void setChartOfAccountDescription(String chartOfAccountDescription) {
895         this.chartOfAccountDescription = chartOfAccountDescription;
896     }
897 
898     /**
899      * Gets the chartOfAccountsCode
900      *
901      * @return Returns the chartOfAccountsCode.
902      */
903     public String getChartOfAccountsCode() {
904         return chartOfAccountsCode;
905     }
906 
907     /**
908      * Sets the chartOfAccountsCode
909      *
910      * @param chartOfAccountsCode The chartOfAccountsCode to set.
911      */
912     public void setChartOfAccountsCode(String chartOfAccountsCode) {
913         this.chartOfAccountsCode = chartOfAccountsCode;
914     }
915 
916     /**
917      * Gets the orgChartOfAccountDescription
918      *
919      * @return Returns the orgChartOfAccountDescription.
920      */
921     public String getOrgChartOfAccountDescription() {
922         return orgChartOfAccountDescription;
923     }
924 
925     /**
926      * Sets the orgChartOfAccountDescription
927      *
928      * @param orgChartOfAccountDescription The orgChartOfAccountDescription to set.
929      */
930     public void setOrgChartOfAccountDescription(String orgChartOfAccountDescription) {
931         this.orgChartOfAccountDescription = orgChartOfAccountDescription;
932     }
933 
934     /**
935      * Gets the orgChartOfAccountsCode
936      *
937      * @return Returns the orgChartOfAccountsCode.
938      */
939     public String getOrgChartOfAccountsCode() {
940         return orgChartOfAccountsCode;
941     }
942 
943     /**
944      * Sets the orgChartOfAccountsCode
945      *
946      * @param orgChartOfAccountsCode The orgChartOfAccountsCode to set.
947      */
948     public void setOrgChartOfAccountsCode(String orgChartOfAccountsCode) {
949         this.orgChartOfAccountsCode = orgChartOfAccountsCode;
950     }
951 
952 }