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    import java.math.BigDecimal;
019    
020    /**
021     * Budget Construction Organization Account Summary Report Business Object.
022     */
023    public class BudgetConstructionOrgAccountObjectDetailReport {
024    
025        // Header parts
026        private String fiscalYear;
027        private String orgChartOfAccountsCode;
028        private String orgChartOfAccountDescription;
029        private String chartOfAccountsCode;
030        private String chartOfAccountDescription;
031        private String organizationCode;
032        private String organizationName;
033        private String consHdr;
034        private String fundGroupCode;
035        private String fundGroupName;
036        private String subFundGroupCode;
037        private String subFundGroupDescription;
038        private String baseFy;
039        private String reqFy;
040        
041        private String accountNumber;
042        private String accountName;
043        private String subAccountName;
044        
045        // Groups
046        private String subAccountNumber;
047        private String incomeExpenseCode;
048        private String financialLevelSortCode;
049        private String financialObjectCode;
050        private String financialSubObjectCode;
051        // page break org_fin_coa_cd, org_cd, sub_fund_grp_cd)%\
052        private String pageBreak;
053        
054        private String subAccountNumberAndName;  
055        private String accountNumberAndName;
056        private String divider; 
057        
058        // Body parts
059        private String financialObjectName;
060        
061        //when the values are zero, below fields should be blank, so make them as string.
062        private BigDecimal positionCsfLeaveFteQuantity;
063        private BigDecimal positionFullTimeEquivalencyQuantity;
064        private Integer financialBeginningBalanceLineAmount = new Integer(0);
065        private BigDecimal appointmentRequestedCsfFteQuantity;
066        private BigDecimal appointmentRequestedFteQuantity;
067        private Integer accountLineAnnualBalanceAmount = new Integer(0);
068        private Integer amountChange = new Integer(0);
069        private BigDecimal percentChange = BigDecimal.ZERO;
070    
071        // Total parts
072        
073        private String totalObjectDescription;
074        
075        private BigDecimal totalObjectPositionCsfLeaveFteQuantity;
076        private BigDecimal totalObjectPositionFullTimeEquivalencyQuantity;
077        private Integer totalObjectFinancialBeginningBalanceLineAmount;
078        private BigDecimal totalObjectAppointmentRequestedCsfFteQuantity;
079        private BigDecimal totalObjectAppointmentRequestedFteQuantity;
080        private Integer totalObjectAccountLineAnnualBalanceAmount;
081        private Integer totalObjectAmountChange;
082        private BigDecimal totalObjectPercentChange;
083        
084        private String totalLevelDescription;
085        
086        private BigDecimal totalLevelPositionCsfLeaveFteQuantity;
087        private BigDecimal totalLevelPositionFullTimeEquivalencyQuantity;
088        private Integer totalLevelFinancialBeginningBalanceLineAmount;
089        private BigDecimal totalLevelAppointmentRequestedCsfFteQuantity;
090        private BigDecimal totalLevelAppointmentRequestedFteQuantity;
091        private Integer totalLevelAccountLineAnnualBalanceAmount;
092        private Integer totalLevelAmountChange;
093        private BigDecimal totalLevelPercentChange;
094    
095        private String grossDescription;
096        private Integer grossFinancialBeginningBalanceLineAmount;
097        private Integer grossAccountLineAnnualBalanceAmount;
098        private Integer grossAmountChange;
099        private BigDecimal grossPercentChange;
100        
101        private String typeDesc;
102        private BigDecimal typePositionCsfLeaveFteQuantity;
103        private BigDecimal typePositionFullTimeEquivalencyQuantity;
104        private Integer typeFinancialBeginningBalanceLineAmount;
105        private BigDecimal typeAppointmentRequestedCsfFteQuantity;
106        private BigDecimal typeAppointmentRequestedFteQuantity;
107        private Integer typeAccountLineAnnualBalanceAmount;
108        private Integer typeAmountChange;
109        private BigDecimal typePercentChange;
110        
111        // account total
112        private String accountNameForAccountTotal;
113        private BigDecimal accountPositionCsfLeaveFteQuantity;
114        private BigDecimal accountPositionFullTimeEquivalencyQuantity;
115        private BigDecimal accountAppointmentRequestedCsfFteQuantity;
116        private BigDecimal accountAppointmentRequestedFteQuantity;
117        
118        private Integer accountRevenueFinancialBeginningBalanceLineAmount;
119        private Integer accountRevenueAccountLineAnnualBalanceAmount;
120        private Integer accountRevenueAmountChange;
121        private BigDecimal accountRevenuePercentChange;
122        
123        private Integer accountGrossFinancialBeginningBalanceLineAmount;
124        private Integer accountGrossAccountLineAnnualBalanceAmount;
125        private Integer accountGrossAmountChange;
126        private BigDecimal accountGrossPercentChange;
127        
128        private Integer accountTrnfrInFinancialBeginningBalanceLineAmount;
129        private Integer accountTrnfrInAccountLineAnnualBalanceAmount;
130        private Integer accountTrnfrInAmountChange;
131        private BigDecimal accountTrnfrInPercentChange;
132        
133        private Integer accountExpenditureFinancialBeginningBalanceLineAmount;
134        private Integer accountExpenditureAccountLineAnnualBalanceAmount;
135        private Integer accountExpenditureAmountChange;
136        private BigDecimal accountExpenditurePercentChange;
137        
138        private Integer accountDifferenceFinancialBeginningBalanceLineAmount;
139        private Integer accountDifferenceAccountLineAnnualBalanceAmount;
140        private Integer accountDifferenceAmountChange;
141        private BigDecimal accountDifferencePercentChange;
142    
143        //subFund total
144        private String subFundGroupDesc;
145        private BigDecimal subFundPositionCsfLeaveFteQuantity;
146        private BigDecimal subFundPositionFullTimeEquivalencyQuantity;
147        private BigDecimal subFundAppointmentRequestedCsfFteQuantity;
148        private BigDecimal subFundAppointmentRequestedFteQuantity;
149        
150        private Integer subFundRevenueFinancialBeginningBalanceLineAmount;
151        private Integer subFundRevenueAccountLineAnnualBalanceAmount;
152        private Integer subFundRevenueAmountChange;
153        private BigDecimal subFundRevenuePercentChange;
154        
155        private Integer subFundGrossFinancialBeginningBalanceLineAmount;
156        private Integer subFundGrossAccountLineAnnualBalanceAmount;
157        private Integer subFundGrossAmountChange;
158        private BigDecimal subFundGrossPercentChange;
159        
160        private Integer subFundTrnfrInFinancialBeginningBalanceLineAmount;
161        private Integer subFundTrnfrInAccountLineAnnualBalanceAmount;
162        private Integer subFundTrnfrInAmountChange;
163        private BigDecimal subFundTrnfrInPercentChange;
164        
165        private Integer subFundExpenditureFinancialBeginningBalanceLineAmount;
166        private Integer subFundExpenditureAccountLineAnnualBalanceAmount;
167        private Integer subFundExpenditureAmountChange;
168        private BigDecimal subFundExpenditurePercentChange;
169        
170        private Integer subFundDifferenceFinancialBeginningBalanceLineAmount;
171        private Integer subFundDifferenceAccountLineAnnualBalanceAmount;
172        private Integer subFundDifferenceAmountChange;
173        private BigDecimal subFundDifferencePercentChange;
174        
175        /**
176         * Gets the amountChange
177         * 
178         * @return Returns the amountChange.
179         */
180        public Integer getAmountChange() {
181            return amountChange;
182        }
183    
184        /**
185         * Sets the amountChange
186         * 
187         * @param amountChange The amountChange to set.
188         */
189        public void setAmountChange(Integer amountChange) {
190            this.amountChange = amountChange;
191        }
192    
193        /**
194         * Gets the baseFy
195         * 
196         * @return Returns the baseFy.
197         */
198        public String getBaseFy() {
199            return baseFy;
200        }
201    
202        /**
203         * Sets the baseFy
204         * 
205         * @param baseFy The baseFy to set.
206         */
207        public void setBaseFy(String baseFy) {
208            this.baseFy = baseFy;
209        }
210    
211        /**
212         * Gets the consHdr
213         * 
214         * @return Returns the consHdr.
215         */
216        public String getConsHdr() {
217            return consHdr;
218        }
219    
220        /**
221         * Sets the consHdr
222         * 
223         * @param consHdr The consHdr to set.
224         */
225        public void setConsHdr(String consHdr) {
226            this.consHdr = consHdr;
227        }
228    
229        /**
230         * Gets the fiscalYear
231         * 
232         * @return Returns the fiscalYear.
233         */
234        public String getFiscalYear() {
235            return fiscalYear;
236        }
237    
238        /**
239         * Sets the fiscalYear
240         * 
241         * @param fiscalYear The fiscalYear to set.
242         */
243        public void setFiscalYear(String fiscalYear) {
244            this.fiscalYear = fiscalYear;
245        }
246    
247        /**
248         * Gets the fundGroupCode
249         * 
250         * @return Returns the fundGroupCode.
251         */
252        public String getFundGroupCode() {
253            return fundGroupCode;
254        }
255    
256        /**
257         * Sets the fundGroupCode
258         * 
259         * @param fundGroupCode The fundGroupCode to set.
260         */
261        public void setFundGroupCode(String fundGroupCode) {
262            this.fundGroupCode = fundGroupCode;
263        }
264    
265       
266        /**
267         * Gets the organizationCode
268         * 
269         * @return Returns the organizationCode.
270         */
271        public String getOrganizationCode() {
272            return organizationCode;
273        }
274    
275        /**
276         * Sets the organizationCode
277         * 
278         * @param organizationCode The organizationCode to set.
279         */
280        public void setOrganizationCode(String organizationCode) {
281            this.organizationCode = organizationCode;
282        }
283    
284        /**
285         * Gets the organizationName
286         * 
287         * @return Returns the organizationName.
288         */
289        public String getOrganizationName() {
290            return organizationName;
291        }
292    
293        /**
294         * Sets the organizationName
295         * 
296         * @param organizationName The organizationName to set.
297         */
298        public void setOrganizationName(String organizationName) {
299            this.organizationName = organizationName;
300        }
301    
302        /**
303         * Gets the percentChange
304         * 
305         * @return Returns the percentChange.
306         */
307        public BigDecimal getPercentChange() {
308            return percentChange;
309        }
310    
311        /**
312         * Sets the percentChange
313         * 
314         * @param percentChange The percentChange to set.
315         */
316        public void setPercentChange(BigDecimal percentChange) {
317            this.percentChange = percentChange;
318        }
319    
320        /**
321         * Gets the reqFy
322         * 
323         * @return Returns the reqFy.
324         */
325        public String getReqFy() {
326            return reqFy;
327        }
328    
329        /**
330         * Sets the reqFy
331         * 
332         * @param reqFy The reqFy to set.
333         */
334        public void setReqFy(String reqFy) {
335            this.reqFy = reqFy;
336        }
337    
338        /**
339         * Gets the subFundGroupCode
340         * 
341         * @return Returns the subFundGroupCode.
342         */
343        public String getSubFundGroupCode() {
344            return subFundGroupCode;
345        }
346    
347        /**
348         * Sets the subFundGroupCode
349         * 
350         * @param subFundGroupCode The subFundGroupCode to set.
351         */
352        public void setSubFundGroupCode(String subFundGroupCode) {
353            this.subFundGroupCode = subFundGroupCode;
354        }
355    
356        /**
357         * Gets the subFundGroupDescription
358         * 
359         * @return Returns the subFundGroupDescription.
360         */
361        public String getSubFundGroupDescription() {
362            return subFundGroupDescription;
363        }
364    
365        /**
366         * Sets the subFundGroupDescription
367         * 
368         * @param subFundGroupDescription The subFundGroupDescription to set.
369         */
370        public void setSubFundGroupDescription(String subFundGroupDescription) {
371            this.subFundGroupDescription = subFundGroupDescription;
372        }
373    
374        /**
375         * Gets the fundGroupName
376         * 
377         * @return Returns the fundGroupName.
378         */
379        public String getFundGroupName() {
380            return fundGroupName;
381        }
382    
383        /**
384         * Sets the fundGroupName
385         * 
386         * @param fundGroupName The fundGroupName to set.
387         */
388        public void setFundGroupName(String fundGroupName) {
389            this.fundGroupName = fundGroupName;
390        }
391    
392        /**
393         * Gets the chartOfAccountDescription
394         * 
395         * @return Returns the chartOfAccountDescription.
396         */
397        public String getChartOfAccountDescription() {
398            return chartOfAccountDescription;
399        }
400    
401        /**
402         * Sets the chartOfAccountDescription
403         * 
404         * @param chartOfAccountDescription The chartOfAccountDescription to set.
405         */
406        public void setChartOfAccountDescription(String chartOfAccountDescription) {
407            this.chartOfAccountDescription = chartOfAccountDescription;
408        }
409    
410        /**
411         * Gets the chartOfAccountsCode
412         * 
413         * @return Returns the chartOfAccountsCode.
414         */
415        public String getChartOfAccountsCode() {
416            return chartOfAccountsCode;
417        }
418    
419        /**
420         * Sets the chartOfAccountsCode
421         * 
422         * @param chartOfAccountsCode The chartOfAccountsCode to set.
423         */
424        public void setChartOfAccountsCode(String chartOfAccountsCode) {
425            this.chartOfAccountsCode = chartOfAccountsCode;
426        }
427    
428        /**
429         * Gets the orgChartOfAccountDescription
430         * 
431         * @return Returns the orgChartOfAccountDescription.
432         */
433        public String getOrgChartOfAccountDescription() {
434            return orgChartOfAccountDescription;
435        }
436    
437        /**
438         * Sets the orgChartOfAccountDescription
439         * 
440         * @param orgChartOfAccountDescription The orgChartOfAccountDescription to set.
441         */
442        public void setOrgChartOfAccountDescription(String orgChartOfAccountDescription) {
443            this.orgChartOfAccountDescription = orgChartOfAccountDescription;
444        }
445    
446        /**
447         * Gets the orgChartOfAccountsCode
448         * 
449         * @return Returns the orgChartOfAccountsCode.
450         */
451        public String getOrgChartOfAccountsCode() {
452            return orgChartOfAccountsCode;
453        }
454    
455        /**
456         * Sets the orgChartOfAccountsCode
457         * 
458         * @param orgChartOfAccountsCode The orgChartOfAccountsCode to set.
459         */
460        public void setOrgChartOfAccountsCode(String orgChartOfAccountsCode) {
461            this.orgChartOfAccountsCode = orgChartOfAccountsCode;
462        }
463    
464        public Integer getAccountLineAnnualBalanceAmount() {
465            return accountLineAnnualBalanceAmount;
466        }
467    
468        public void setAccountLineAnnualBalanceAmount(Integer accountLineAnnualBalanceAmount) {
469            this.accountLineAnnualBalanceAmount = accountLineAnnualBalanceAmount;
470        }
471    
472        public BigDecimal getAccountAppointmentRequestedCsfFteQuantity() {
473            return accountAppointmentRequestedCsfFteQuantity;
474        }
475    
476        public void setAccountAppointmentRequestedCsfFteQuantity(BigDecimal accountAppointmentRequestedCsfFteQuantity) {
477            this.accountAppointmentRequestedCsfFteQuantity = accountAppointmentRequestedCsfFteQuantity;
478        }
479    
480        public BigDecimal getAccountAppointmentRequestedFteQuantity() {
481            return accountAppointmentRequestedFteQuantity;
482        }
483    
484        public void setAccountAppointmentRequestedFteQuantity(BigDecimal accountAppointmentRequestedFteQuantity) {
485            this.accountAppointmentRequestedFteQuantity = accountAppointmentRequestedFteQuantity;
486        }
487    
488        public Integer getAccountDifferenceAccountLineAnnualBalanceAmount() {
489            return accountDifferenceAccountLineAnnualBalanceAmount;
490        }
491    
492        public void setAccountDifferenceAccountLineAnnualBalanceAmount(Integer accountDifferenceAccountLineAnnualBalanceAmount) {
493            this.accountDifferenceAccountLineAnnualBalanceAmount = accountDifferenceAccountLineAnnualBalanceAmount;
494        }
495    
496        public Integer getAccountDifferenceAmountChange() {
497            return accountDifferenceAmountChange;
498        }
499    
500        public void setAccountDifferenceAmountChange(Integer accountDifferenceAmountChange) {
501            this.accountDifferenceAmountChange = accountDifferenceAmountChange;
502        }
503    
504        public Integer getAccountDifferenceFinancialBeginningBalanceLineAmount() {
505            return accountDifferenceFinancialBeginningBalanceLineAmount;
506        }
507    
508        public void setAccountDifferenceFinancialBeginningBalanceLineAmount(Integer accountDifferenceFinancialBeginningBalanceLineAmount) {
509            this.accountDifferenceFinancialBeginningBalanceLineAmount = accountDifferenceFinancialBeginningBalanceLineAmount;
510        }
511    
512        public BigDecimal getAccountDifferencePercentChange() {
513            return accountDifferencePercentChange;
514        }
515    
516        public void setAccountDifferencePercentChange(BigDecimal accountDifferencePercentChange) {
517            this.accountDifferencePercentChange = accountDifferencePercentChange;
518        }
519    
520        public Integer getAccountExpenditureAccountLineAnnualBalanceAmount() {
521            return accountExpenditureAccountLineAnnualBalanceAmount;
522        }
523    
524        public void setAccountExpenditureAccountLineAnnualBalanceAmount(Integer accountExpenditureAccountLineAnnualBalanceAmount) {
525            this.accountExpenditureAccountLineAnnualBalanceAmount = accountExpenditureAccountLineAnnualBalanceAmount;
526        }
527    
528        public Integer getAccountExpenditureAmountChange() {
529            return accountExpenditureAmountChange;
530        }
531    
532        public void setAccountExpenditureAmountChange(Integer accountExpenditureAmountChange) {
533            this.accountExpenditureAmountChange = accountExpenditureAmountChange;
534        }
535    
536        public Integer getAccountExpenditureFinancialBeginningBalanceLineAmount() {
537            return accountExpenditureFinancialBeginningBalanceLineAmount;
538        }
539    
540        public void setAccountExpenditureFinancialBeginningBalanceLineAmount(Integer accountExpenditureFinancialBeginningBalanceLineAmount) {
541            this.accountExpenditureFinancialBeginningBalanceLineAmount = accountExpenditureFinancialBeginningBalanceLineAmount;
542        }
543    
544        public BigDecimal getAccountExpenditurePercentChange() {
545            return accountExpenditurePercentChange;
546        }
547    
548        public void setAccountExpenditurePercentChange(BigDecimal accountExpenditurePercentChange) {
549            this.accountExpenditurePercentChange = accountExpenditurePercentChange;
550        }
551    
552        public Integer getAccountGrossAccountLineAnnualBalanceAmount() {
553            return accountGrossAccountLineAnnualBalanceAmount;
554        }
555    
556        public void setAccountGrossAccountLineAnnualBalanceAmount(Integer accountGrossAccountLineAnnualBalanceAmount) {
557            this.accountGrossAccountLineAnnualBalanceAmount = accountGrossAccountLineAnnualBalanceAmount;
558        }
559    
560        public Integer getAccountGrossAmountChange() {
561            return accountGrossAmountChange;
562        }
563    
564        public void setAccountGrossAmountChange(Integer accountGrossAmountChange) {
565            this.accountGrossAmountChange = accountGrossAmountChange;
566        }
567    
568        public Integer getAccountGrossFinancialBeginningBalanceLineAmount() {
569            return accountGrossFinancialBeginningBalanceLineAmount;
570        }
571    
572        public void setAccountGrossFinancialBeginningBalanceLineAmount(Integer accountGrossFinancialBeginningBalanceLineAmount) {
573            this.accountGrossFinancialBeginningBalanceLineAmount = accountGrossFinancialBeginningBalanceLineAmount;
574        }
575    
576        public BigDecimal getAccountGrossPercentChange() {
577            return accountGrossPercentChange;
578        }
579    
580        public void setAccountGrossPercentChange(BigDecimal accountGrossPercentChange) {
581            this.accountGrossPercentChange = accountGrossPercentChange;
582        }
583    
584        public String getAccountName() {
585            return accountName;
586        }
587    
588        public void setAccountName(String accountName) {
589            this.accountName = accountName;
590        }
591    
592        public String getAccountNameForAccountTotal() {
593            return accountNameForAccountTotal;
594        }
595    
596        public void setAccountNameForAccountTotal(String accountNameForAccountTotal) {
597            this.accountNameForAccountTotal = accountNameForAccountTotal;
598        }
599    
600        public String getAccountNumber() {
601            return accountNumber;
602        }
603    
604        public void setAccountNumber(String accountNumber) {
605            this.accountNumber = accountNumber;
606        }
607    
608        public BigDecimal getAccountPositionCsfLeaveFteQuantity() {
609            return accountPositionCsfLeaveFteQuantity;
610        }
611    
612        public void setAccountPositionCsfLeaveFteQuantity(BigDecimal accountPositionCsfLeaveFteQuantity) {
613            this.accountPositionCsfLeaveFteQuantity = accountPositionCsfLeaveFteQuantity;
614        }
615    
616        public BigDecimal getAccountPositionFullTimeEquivalencyQuantity() {
617            return accountPositionFullTimeEquivalencyQuantity;
618        }
619    
620        public void setAccountPositionFullTimeEquivalencyQuantity(BigDecimal accountPositionFullTimeEquivalencyQuantity) {
621            this.accountPositionFullTimeEquivalencyQuantity = accountPositionFullTimeEquivalencyQuantity;
622        }
623    
624        public Integer getAccountRevenueAccountLineAnnualBalanceAmount() {
625            return accountRevenueAccountLineAnnualBalanceAmount;
626        }
627    
628        public void setAccountRevenueAccountLineAnnualBalanceAmount(Integer accountRevenueAccountLineAnnualBalanceAmount) {
629            this.accountRevenueAccountLineAnnualBalanceAmount = accountRevenueAccountLineAnnualBalanceAmount;
630        }
631    
632        public Integer getAccountRevenueAmountChange() {
633            return accountRevenueAmountChange;
634        }
635    
636        public void setAccountRevenueAmountChange(Integer accountRevenueAmountChange) {
637            this.accountRevenueAmountChange = accountRevenueAmountChange;
638        }
639    
640        public Integer getAccountRevenueFinancialBeginningBalanceLineAmount() {
641            return accountRevenueFinancialBeginningBalanceLineAmount;
642        }
643    
644        public void setAccountRevenueFinancialBeginningBalanceLineAmount(Integer accountRevenueFinancialBeginningBalanceLineAmount) {
645            this.accountRevenueFinancialBeginningBalanceLineAmount = accountRevenueFinancialBeginningBalanceLineAmount;
646        }
647    
648        public BigDecimal getAccountRevenuePercentChange() {
649            return accountRevenuePercentChange;
650        }
651    
652        public void setAccountRevenuePercentChange(BigDecimal accountRevenuePercentChange) {
653            this.accountRevenuePercentChange = accountRevenuePercentChange;
654        }
655    
656        public Integer getAccountTrnfrInAccountLineAnnualBalanceAmount() {
657            return accountTrnfrInAccountLineAnnualBalanceAmount;
658        }
659    
660        public void setAccountTrnfrInAccountLineAnnualBalanceAmount(Integer accountTrnfrInAccountLineAnnualBalanceAmount) {
661            this.accountTrnfrInAccountLineAnnualBalanceAmount = accountTrnfrInAccountLineAnnualBalanceAmount;
662        }
663    
664        public Integer getAccountTrnfrInAmountChange() {
665            return accountTrnfrInAmountChange;
666        }
667    
668        public void setAccountTrnfrInAmountChange(Integer accountTrnfrInAmountChange) {
669            this.accountTrnfrInAmountChange = accountTrnfrInAmountChange;
670        }
671    
672        public Integer getAccountTrnfrInFinancialBeginningBalanceLineAmount() {
673            return accountTrnfrInFinancialBeginningBalanceLineAmount;
674        }
675    
676        public void setAccountTrnfrInFinancialBeginningBalanceLineAmount(Integer accountTrnfrInFinancialBeginningBalanceLineAmount) {
677            this.accountTrnfrInFinancialBeginningBalanceLineAmount = accountTrnfrInFinancialBeginningBalanceLineAmount;
678        }
679    
680        public BigDecimal getAccountTrnfrInPercentChange() {
681            return accountTrnfrInPercentChange;
682        }
683    
684        public void setAccountTrnfrInPercentChange(BigDecimal accountTrnfrInPercentChange) {
685            this.accountTrnfrInPercentChange = accountTrnfrInPercentChange;
686        }
687    
688        public BigDecimal getAppointmentRequestedCsfFteQuantity() {
689            return appointmentRequestedCsfFteQuantity;
690        }
691    
692        public void setAppointmentRequestedCsfFteQuantity(BigDecimal appointmentRequestedCsfFteQuantity) {
693            this.appointmentRequestedCsfFteQuantity = appointmentRequestedCsfFteQuantity;
694        }
695    
696        public BigDecimal getAppointmentRequestedFteQuantity() {
697            return appointmentRequestedFteQuantity;
698        }
699    
700        public void setAppointmentRequestedFteQuantity(BigDecimal appointmentRequestedFteQuantity) {
701            this.appointmentRequestedFteQuantity = appointmentRequestedFteQuantity;
702        }
703    
704        public Integer getFinancialBeginningBalanceLineAmount() {
705            return financialBeginningBalanceLineAmount;
706        }
707    
708        public void setFinancialBeginningBalanceLineAmount(Integer financialBeginningBalanceLineAmount) {
709            this.financialBeginningBalanceLineAmount = financialBeginningBalanceLineAmount;
710        }
711    
712        public String getFinancialLevelSortCode() {
713            return financialLevelSortCode;
714        }
715    
716        public void setFinancialLevelSortCode(String financialLevelSortCode) {
717            this.financialLevelSortCode = financialLevelSortCode;
718        }
719    
720        public String getFinancialObjectCode() {
721            return financialObjectCode;
722        }
723    
724        public void setFinancialObjectCode(String financialObjectCode) {
725            this.financialObjectCode = financialObjectCode;
726        }
727    
728        public String getFinancialObjectName() {
729            return financialObjectName;
730        }
731    
732        public void setFinancialObjectName(String financialObjectName) {
733            this.financialObjectName = financialObjectName;
734        }
735    
736        public String getFinancialSubObjectCode() {
737            return financialSubObjectCode;
738        }
739    
740        public void setFinancialSubObjectCode(String financialSubObjectCode) {
741            this.financialSubObjectCode = financialSubObjectCode;
742        }
743    
744        public Integer getGrossAccountLineAnnualBalanceAmount() {
745            return grossAccountLineAnnualBalanceAmount;
746        }
747    
748        public void setGrossAccountLineAnnualBalanceAmount(Integer grossAccountLineAnnualBalanceAmount) {
749            this.grossAccountLineAnnualBalanceAmount = grossAccountLineAnnualBalanceAmount;
750        }
751    
752        public Integer getGrossAmountChange() {
753            return grossAmountChange;
754        }
755    
756        public void setGrossAmountChange(Integer grossAmountChange) {
757            this.grossAmountChange = grossAmountChange;
758        }
759    
760        public String getGrossDescription() {
761            return grossDescription;
762        }
763    
764        public void setGrossDescription(String grossDescription) {
765            this.grossDescription = grossDescription;
766        }
767    
768        public Integer getGrossFinancialBeginningBalanceLineAmount() {
769            return grossFinancialBeginningBalanceLineAmount;
770        }
771    
772        public void setGrossFinancialBeginningBalanceLineAmount(Integer grossFinancialBeginningBalanceLineAmount) {
773            this.grossFinancialBeginningBalanceLineAmount = grossFinancialBeginningBalanceLineAmount;
774        }
775    
776        public BigDecimal getGrossPercentChange() {
777            return grossPercentChange;
778        }
779    
780        public void setGrossPercentChange(BigDecimal grossPercentChange) {
781            this.grossPercentChange = grossPercentChange;
782        }
783    
784        public String getIncomeExpenseCode() {
785            return incomeExpenseCode;
786        }
787    
788        public void setIncomeExpenseCode(String incomeExpenseCode) {
789            this.incomeExpenseCode = incomeExpenseCode;
790        }
791    
792        public String getPageBreak() {
793            return pageBreak;
794        }
795    
796        public void setPageBreak(String pageBreak) {
797            this.pageBreak = pageBreak;
798        }
799    
800        public BigDecimal getPositionCsfLeaveFteQuantity() {
801            return positionCsfLeaveFteQuantity;
802        }
803    
804        public void setPositionCsfLeaveFteQuantity(BigDecimal positionCsfLeaveFteQuantity) {
805            this.positionCsfLeaveFteQuantity = positionCsfLeaveFteQuantity;
806        }
807    
808        public BigDecimal getPositionFullTimeEquivalencyQuantity() {
809            return positionFullTimeEquivalencyQuantity;
810        }
811    
812        public void setPositionFullTimeEquivalencyQuantity(BigDecimal positionFullTimeEquivalencyQuantity) {
813            this.positionFullTimeEquivalencyQuantity = positionFullTimeEquivalencyQuantity;
814        }
815    
816        public String getSubAccountName() {
817            return subAccountName;
818        }
819    
820        public void setSubAccountName(String subAccountName) {
821            this.subAccountName = subAccountName;
822        }
823    
824        public String getSubAccountNumber() {
825            return subAccountNumber;
826        }
827    
828        public void setSubAccountNumber(String subAccountNumber) {
829            this.subAccountNumber = subAccountNumber;
830        }
831    
832        public BigDecimal getSubFundAppointmentRequestedCsfFteQuantity() {
833            return subFundAppointmentRequestedCsfFteQuantity;
834        }
835    
836        public void setSubFundAppointmentRequestedCsfFteQuantity(BigDecimal subFundAppointmentRequestedCsfFteQuantity) {
837            this.subFundAppointmentRequestedCsfFteQuantity = subFundAppointmentRequestedCsfFteQuantity;
838        }
839    
840        public BigDecimal getSubFundAppointmentRequestedFteQuantity() {
841            return subFundAppointmentRequestedFteQuantity;
842        }
843    
844        public void setSubFundAppointmentRequestedFteQuantity(BigDecimal subFundAppointmentRequestedFteQuantity) {
845            this.subFundAppointmentRequestedFteQuantity = subFundAppointmentRequestedFteQuantity;
846        }
847    
848        public Integer getSubFundDifferenceAccountLineAnnualBalanceAmount() {
849            return subFundDifferenceAccountLineAnnualBalanceAmount;
850        }
851    
852        public void setSubFundDifferenceAccountLineAnnualBalanceAmount(Integer subFundDifferenceAccountLineAnnualBalanceAmount) {
853            this.subFundDifferenceAccountLineAnnualBalanceAmount = subFundDifferenceAccountLineAnnualBalanceAmount;
854        }
855    
856        public Integer getSubFundDifferenceAmountChange() {
857            return subFundDifferenceAmountChange;
858        }
859    
860        public void setSubFundDifferenceAmountChange(Integer subFundDifferenceAmountChange) {
861            this.subFundDifferenceAmountChange = subFundDifferenceAmountChange;
862        }
863    
864        public Integer getSubFundDifferenceFinancialBeginningBalanceLineAmount() {
865            return subFundDifferenceFinancialBeginningBalanceLineAmount;
866        }
867    
868        public void setSubFundDifferenceFinancialBeginningBalanceLineAmount(Integer subFundDifferenceFinancialBeginningBalanceLineAmount) {
869            this.subFundDifferenceFinancialBeginningBalanceLineAmount = subFundDifferenceFinancialBeginningBalanceLineAmount;
870        }
871    
872        public BigDecimal getSubFundDifferencePercentChange() {
873            return subFundDifferencePercentChange;
874        }
875    
876        public void setSubFundDifferencePercentChange(BigDecimal subFundDifferencePercentChange) {
877            this.subFundDifferencePercentChange = subFundDifferencePercentChange;
878        }
879    
880        public Integer getSubFundExpenditureAccountLineAnnualBalanceAmount() {
881            return subFundExpenditureAccountLineAnnualBalanceAmount;
882        }
883    
884        public void setSubFundExpenditureAccountLineAnnualBalanceAmount(Integer subFundExpenditureAccountLineAnnualBalanceAmount) {
885            this.subFundExpenditureAccountLineAnnualBalanceAmount = subFundExpenditureAccountLineAnnualBalanceAmount;
886        }
887    
888        public Integer getSubFundExpenditureAmountChange() {
889            return subFundExpenditureAmountChange;
890        }
891    
892        public void setSubFundExpenditureAmountChange(Integer subFundExpenditureAmountChange) {
893            this.subFundExpenditureAmountChange = subFundExpenditureAmountChange;
894        }
895    
896        public Integer getSubFundExpenditureFinancialBeginningBalanceLineAmount() {
897            return subFundExpenditureFinancialBeginningBalanceLineAmount;
898        }
899    
900        public void setSubFundExpenditureFinancialBeginningBalanceLineAmount(Integer subFundExpenditureFinancialBeginningBalanceLineAmount) {
901            this.subFundExpenditureFinancialBeginningBalanceLineAmount = subFundExpenditureFinancialBeginningBalanceLineAmount;
902        }
903    
904        public BigDecimal getSubFundExpenditurePercentChange() {
905            return subFundExpenditurePercentChange;
906        }
907    
908        public void setSubFundExpenditurePercentChange(BigDecimal subFundExpenditurePercentChange) {
909            this.subFundExpenditurePercentChange = subFundExpenditurePercentChange;
910        }
911    
912        public Integer getSubFundGrossAccountLineAnnualBalanceAmount() {
913            return subFundGrossAccountLineAnnualBalanceAmount;
914        }
915    
916        public void setSubFundGrossAccountLineAnnualBalanceAmount(Integer subFundGrossAccountLineAnnualBalanceAmount) {
917            this.subFundGrossAccountLineAnnualBalanceAmount = subFundGrossAccountLineAnnualBalanceAmount;
918        }
919    
920        public Integer getSubFundGrossAmountChange() {
921            return subFundGrossAmountChange;
922        }
923    
924        public void setSubFundGrossAmountChange(Integer subFundGrossAmountChange) {
925            this.subFundGrossAmountChange = subFundGrossAmountChange;
926        }
927    
928        public Integer getSubFundGrossFinancialBeginningBalanceLineAmount() {
929            return subFundGrossFinancialBeginningBalanceLineAmount;
930        }
931    
932        public void setSubFundGrossFinancialBeginningBalanceLineAmount(Integer subFundGrossFinancialBeginningBalanceLineAmount) {
933            this.subFundGrossFinancialBeginningBalanceLineAmount = subFundGrossFinancialBeginningBalanceLineAmount;
934        }
935    
936        public BigDecimal getSubFundGrossPercentChange() {
937            return subFundGrossPercentChange;
938        }
939    
940        public void setSubFundGrossPercentChange(BigDecimal subFundGrossPercentChange) {
941            this.subFundGrossPercentChange = subFundGrossPercentChange;
942        }
943    
944        public String getSubFundGroupDesc() {
945            return subFundGroupDesc;
946        }
947    
948        public void setSubFundGroupDesc(String subFundGroupDesc) {
949            this.subFundGroupDesc = subFundGroupDesc;
950        }
951    
952        public BigDecimal getSubFundPositionCsfLeaveFteQuantity() {
953            return subFundPositionCsfLeaveFteQuantity;
954        }
955    
956        public void setSubFundPositionCsfLeaveFteQuantity(BigDecimal subFundPositionCsfLeaveFteQuantity) {
957            this.subFundPositionCsfLeaveFteQuantity = subFundPositionCsfLeaveFteQuantity;
958        }
959    
960        public BigDecimal getSubFundPositionFullTimeEquivalencyQuantity() {
961            return subFundPositionFullTimeEquivalencyQuantity;
962        }
963    
964        public void setSubFundPositionFullTimeEquivalencyQuantity(BigDecimal subFundPositionFullTimeEquivalencyQuantity) {
965            this.subFundPositionFullTimeEquivalencyQuantity = subFundPositionFullTimeEquivalencyQuantity;
966        }
967    
968        public Integer getSubFundRevenueAccountLineAnnualBalanceAmount() {
969            return subFundRevenueAccountLineAnnualBalanceAmount;
970        }
971    
972        public void setSubFundRevenueAccountLineAnnualBalanceAmount(Integer subFundRevenueAccountLineAnnualBalanceAmount) {
973            this.subFundRevenueAccountLineAnnualBalanceAmount = subFundRevenueAccountLineAnnualBalanceAmount;
974        }
975    
976        public Integer getSubFundRevenueAmountChange() {
977            return subFundRevenueAmountChange;
978        }
979    
980        public void setSubFundRevenueAmountChange(Integer subFundRevenueAmountChange) {
981            this.subFundRevenueAmountChange = subFundRevenueAmountChange;
982        }
983    
984        public Integer getSubFundRevenueFinancialBeginningBalanceLineAmount() {
985            return subFundRevenueFinancialBeginningBalanceLineAmount;
986        }
987    
988        public void setSubFundRevenueFinancialBeginningBalanceLineAmount(Integer subFundRevenueFinancialBeginningBalanceLineAmount) {
989            this.subFundRevenueFinancialBeginningBalanceLineAmount = subFundRevenueFinancialBeginningBalanceLineAmount;
990        }
991    
992        public BigDecimal getSubFundRevenuePercentChange() {
993            return subFundRevenuePercentChange;
994        }
995    
996        public void setSubFundRevenuePercentChange(BigDecimal subFundRevenuePercentChange) {
997            this.subFundRevenuePercentChange = subFundRevenuePercentChange;
998        }
999    
1000        public Integer getSubFundTrnfrInAccountLineAnnualBalanceAmount() {
1001            return subFundTrnfrInAccountLineAnnualBalanceAmount;
1002        }
1003    
1004        public void setSubFundTrnfrInAccountLineAnnualBalanceAmount(Integer subFundTrnfrInAccountLineAnnualBalanceAmount) {
1005            this.subFundTrnfrInAccountLineAnnualBalanceAmount = subFundTrnfrInAccountLineAnnualBalanceAmount;
1006        }
1007    
1008        public Integer getSubFundTrnfrInAmountChange() {
1009            return subFundTrnfrInAmountChange;
1010        }
1011    
1012        public void setSubFundTrnfrInAmountChange(Integer subFundTrnfrInAmountChange) {
1013            this.subFundTrnfrInAmountChange = subFundTrnfrInAmountChange;
1014        }
1015    
1016        public Integer getSubFundTrnfrInFinancialBeginningBalanceLineAmount() {
1017            return subFundTrnfrInFinancialBeginningBalanceLineAmount;
1018        }
1019    
1020        public void setSubFundTrnfrInFinancialBeginningBalanceLineAmount(Integer subFundTrnfrInFinancialBeginningBalanceLineAmount) {
1021            this.subFundTrnfrInFinancialBeginningBalanceLineAmount = subFundTrnfrInFinancialBeginningBalanceLineAmount;
1022        }
1023    
1024        public BigDecimal getSubFundTrnfrInPercentChange() {
1025            return subFundTrnfrInPercentChange;
1026        }
1027    
1028        public void setSubFundTrnfrInPercentChange(BigDecimal subFundTrnfrInPercentChange) {
1029            this.subFundTrnfrInPercentChange = subFundTrnfrInPercentChange;
1030        }
1031    
1032        public Integer getTotalLevelAccountLineAnnualBalanceAmount() {
1033            return totalLevelAccountLineAnnualBalanceAmount;
1034        }
1035    
1036        public void setTotalLevelAccountLineAnnualBalanceAmount(Integer totalLevelAccountLineAnnualBalanceAmount) {
1037            this.totalLevelAccountLineAnnualBalanceAmount = totalLevelAccountLineAnnualBalanceAmount;
1038        }
1039    
1040        public Integer getTotalLevelAmountChange() {
1041            return totalLevelAmountChange;
1042        }
1043    
1044        public void setTotalLevelAmountChange(Integer totalLevelAmountChange) {
1045            this.totalLevelAmountChange = totalLevelAmountChange;
1046        }
1047    
1048        public BigDecimal getTotalLevelAppointmentRequestedCsfFteQuantity() {
1049            return totalLevelAppointmentRequestedCsfFteQuantity;
1050        }
1051    
1052        public void setTotalLevelAppointmentRequestedCsfFteQuantity(BigDecimal totalLevelAppointmentRequestedCsfFteQuantity) {
1053            this.totalLevelAppointmentRequestedCsfFteQuantity = totalLevelAppointmentRequestedCsfFteQuantity;
1054        }
1055    
1056        public BigDecimal getTotalLevelAppointmentRequestedFteQuantity() {
1057            return totalLevelAppointmentRequestedFteQuantity;
1058        }
1059    
1060        public void setTotalLevelAppointmentRequestedFteQuantity(BigDecimal totalLevelAppointmentRequestedFteQuantity) {
1061            this.totalLevelAppointmentRequestedFteQuantity = totalLevelAppointmentRequestedFteQuantity;
1062        }
1063    
1064        public String getTotalLevelDescription() {
1065            return totalLevelDescription;
1066        }
1067    
1068        public void setTotalLevelDescription(String totalLevelDescription) {
1069            this.totalLevelDescription = totalLevelDescription;
1070        }
1071    
1072        public Integer getTotalLevelFinancialBeginningBalanceLineAmount() {
1073            return totalLevelFinancialBeginningBalanceLineAmount;
1074        }
1075    
1076        public void setTotalLevelFinancialBeginningBalanceLineAmount(Integer totalLevelFinancialBeginningBalanceLineAmount) {
1077            this.totalLevelFinancialBeginningBalanceLineAmount = totalLevelFinancialBeginningBalanceLineAmount;
1078        }
1079    
1080        public BigDecimal getTotalLevelPercentChange() {
1081            return totalLevelPercentChange;
1082        }
1083    
1084        public void setTotalLevelPercentChange(BigDecimal totalLevelPercentChange) {
1085            this.totalLevelPercentChange = totalLevelPercentChange;
1086        }
1087    
1088        public BigDecimal getTotalLevelPositionCsfLeaveFteQuantity() {
1089            return totalLevelPositionCsfLeaveFteQuantity;
1090        }
1091    
1092        public void setTotalLevelPositionCsfLeaveFteQuantity(BigDecimal totalLevelPositionCsfLeaveFteQuantity) {
1093            this.totalLevelPositionCsfLeaveFteQuantity = totalLevelPositionCsfLeaveFteQuantity;
1094        }
1095    
1096        public BigDecimal getTotalLevelPositionFullTimeEquivalencyQuantity() {
1097            return totalLevelPositionFullTimeEquivalencyQuantity;
1098        }
1099    
1100        public void setTotalLevelPositionFullTimeEquivalencyQuantity(BigDecimal totalLevelPositionFullTimeEquivalencyQuantity) {
1101            this.totalLevelPositionFullTimeEquivalencyQuantity = totalLevelPositionFullTimeEquivalencyQuantity;
1102        }
1103    
1104        public Integer getTotalObjectAccountLineAnnualBalanceAmount() {
1105            return totalObjectAccountLineAnnualBalanceAmount;
1106        }
1107    
1108        public void setTotalObjectAccountLineAnnualBalanceAmount(Integer totalObjectAccountLineAnnualBalanceAmount) {
1109            this.totalObjectAccountLineAnnualBalanceAmount = totalObjectAccountLineAnnualBalanceAmount;
1110        }
1111    
1112        public Integer getTotalObjectAmountChange() {
1113            return totalObjectAmountChange;
1114        }
1115    
1116        public void setTotalObjectAmountChange(Integer totalObjectAmountChange) {
1117            this.totalObjectAmountChange = totalObjectAmountChange;
1118        }
1119    
1120        public BigDecimal getTotalObjectAppointmentRequestedCsfFteQuantity() {
1121            return totalObjectAppointmentRequestedCsfFteQuantity;
1122        }
1123    
1124        public void setTotalObjectAppointmentRequestedCsfFteQuantity(BigDecimal totalObjectAppointmentRequestedCsfFteQuantity) {
1125            this.totalObjectAppointmentRequestedCsfFteQuantity = totalObjectAppointmentRequestedCsfFteQuantity;
1126        }
1127    
1128        public BigDecimal getTotalObjectAppointmentRequestedFteQuantity() {
1129            return totalObjectAppointmentRequestedFteQuantity;
1130        }
1131    
1132        public void setTotalObjectAppointmentRequestedFteQuantity(BigDecimal totalObjectAppointmentRequestedFteQuantity) {
1133            this.totalObjectAppointmentRequestedFteQuantity = totalObjectAppointmentRequestedFteQuantity;
1134        }
1135    
1136        public String getTotalObjectDescription() {
1137            return totalObjectDescription;
1138        }
1139    
1140        public void setTotalObjectDescription(String totalObjectDescription) {
1141            this.totalObjectDescription = totalObjectDescription;
1142        }
1143    
1144        public Integer getTotalObjectFinancialBeginningBalanceLineAmount() {
1145            return totalObjectFinancialBeginningBalanceLineAmount;
1146        }
1147    
1148        public void setTotalObjectFinancialBeginningBalanceLineAmount(Integer totalObjectFinancialBeginningBalanceLineAmount) {
1149            this.totalObjectFinancialBeginningBalanceLineAmount = totalObjectFinancialBeginningBalanceLineAmount;
1150        }
1151    
1152        public BigDecimal getTotalObjectPercentChange() {
1153            return totalObjectPercentChange;
1154        }
1155    
1156        public void setTotalObjectPercentChange(BigDecimal totalObjectPercentChange) {
1157            this.totalObjectPercentChange = totalObjectPercentChange;
1158        }
1159    
1160        public BigDecimal getTotalObjectPositionCsfLeaveFteQuantity() {
1161            return totalObjectPositionCsfLeaveFteQuantity;
1162        }
1163    
1164        public void setTotalObjectPositionCsfLeaveFteQuantity(BigDecimal totalObjectPositionCsfLeaveFteQuantity) {
1165            this.totalObjectPositionCsfLeaveFteQuantity = totalObjectPositionCsfLeaveFteQuantity;
1166        }
1167    
1168        public BigDecimal getTotalObjectPositionFullTimeEquivalencyQuantity() {
1169            return totalObjectPositionFullTimeEquivalencyQuantity;
1170        }
1171    
1172        public void setTotalObjectPositionFullTimeEquivalencyQuantity(BigDecimal totalObjectPositionFullTimeEquivalencyQuantity) {
1173            this.totalObjectPositionFullTimeEquivalencyQuantity = totalObjectPositionFullTimeEquivalencyQuantity;
1174        }
1175    
1176        public Integer getTypeAccountLineAnnualBalanceAmount() {
1177            return typeAccountLineAnnualBalanceAmount;
1178        }
1179    
1180        public void setTypeAccountLineAnnualBalanceAmount(Integer typeAccountLineAnnualBalanceAmount) {
1181            this.typeAccountLineAnnualBalanceAmount = typeAccountLineAnnualBalanceAmount;
1182        }
1183    
1184        public Integer getTypeAmountChange() {
1185            return typeAmountChange;
1186        }
1187    
1188        public void setTypeAmountChange(Integer typeAmountChange) {
1189            this.typeAmountChange = typeAmountChange;
1190        }
1191    
1192        public BigDecimal getTypeAppointmentRequestedCsfFteQuantity() {
1193            return typeAppointmentRequestedCsfFteQuantity;
1194        }
1195    
1196        public void setTypeAppointmentRequestedCsfFteQuantity(BigDecimal typeAppointmentRequestedCsfFteQuantity) {
1197            this.typeAppointmentRequestedCsfFteQuantity = typeAppointmentRequestedCsfFteQuantity;
1198        }
1199    
1200        public BigDecimal getTypeAppointmentRequestedFteQuantity() {
1201            return typeAppointmentRequestedFteQuantity;
1202        }
1203    
1204        public void setTypeAppointmentRequestedFteQuantity(BigDecimal typeAppointmentRequestedFteQuantity) {
1205            this.typeAppointmentRequestedFteQuantity = typeAppointmentRequestedFteQuantity;
1206        }
1207    
1208        public String getTypeDesc() {
1209            return typeDesc;
1210        }
1211    
1212        public void setTypeDesc(String typeDesc) {
1213            this.typeDesc = typeDesc;
1214        }
1215    
1216        public Integer getTypeFinancialBeginningBalanceLineAmount() {
1217            return typeFinancialBeginningBalanceLineAmount;
1218        }
1219    
1220        public void setTypeFinancialBeginningBalanceLineAmount(Integer typeFinancialBeginningBalanceLineAmount) {
1221            this.typeFinancialBeginningBalanceLineAmount = typeFinancialBeginningBalanceLineAmount;
1222        }
1223    
1224        public BigDecimal getTypePercentChange() {
1225            return typePercentChange;
1226        }
1227    
1228        public void setTypePercentChange(BigDecimal typePercentChange) {
1229            this.typePercentChange = typePercentChange;
1230        }
1231    
1232        public BigDecimal getTypePositionCsfLeaveFteQuantity() {
1233            return typePositionCsfLeaveFteQuantity;
1234        }
1235    
1236        public void setTypePositionCsfLeaveFteQuantity(BigDecimal typePositionCsfLeaveFteQuantity) {
1237            this.typePositionCsfLeaveFteQuantity = typePositionCsfLeaveFteQuantity;
1238        }
1239    
1240        public BigDecimal getTypePositionFullTimeEquivalencyQuantity() {
1241            return typePositionFullTimeEquivalencyQuantity;
1242        }
1243    
1244        public void setTypePositionFullTimeEquivalencyQuantity(BigDecimal typePositionFullTimeEquivalencyQuantity) {
1245            this.typePositionFullTimeEquivalencyQuantity = typePositionFullTimeEquivalencyQuantity;
1246        }
1247    
1248        /**
1249         * Gets the subAccountNumberAndName attribute. 
1250         * @return Returns the subAccountNumberAndName.
1251         */
1252        public String getSubAccountNumberAndName() {
1253            return subAccountNumberAndName;
1254        }
1255    
1256        /**
1257         * Sets the subAccountNumberAndName attribute value.
1258         * @param subAccountNumberAndName The subAccountNumberAndName to set.
1259         */
1260        public void setSubAccountNumberAndName(String subAccountNumberAndName) {
1261            this.subAccountNumberAndName = subAccountNumberAndName;
1262        }
1263    
1264        /**
1265         * Gets the accountNumberAndName attribute. 
1266         * @return Returns the accountNumberAndName.
1267         */
1268        public String getAccountNumberAndName() {
1269            return accountNumberAndName;
1270        }
1271    
1272        /**
1273         * Sets the accountNumberAndName attribute value.
1274         * @param accountNumberAndName The accountNumberAndName to set.
1275         */
1276        public void setAccountNumberAndName(String accountNumberAndName) {
1277            this.accountNumberAndName = accountNumberAndName;
1278        }
1279    
1280        /**
1281         * Gets the divider attribute. 
1282         * @return Returns the divider.
1283         */
1284        public String getDivider() {
1285            return divider;
1286        }
1287    
1288        /**
1289         * Sets the divider attribute value.
1290         * @param divider The divider to set.
1291         */
1292        public void setDivider(String divider) {
1293            this.divider = divider;
1294        }
1295    
1296    }