/* * The Kuali Financial System, a comprehensive financial management system for higher education. * * Copyright 2005-2014 The Kuali Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.kuali.kfs.gl.businessobject; import java.util.LinkedHashMap; import org.kuali.kfs.sys.KFSKeyConstants; /** * A poster output summary total line, for transactions with a given fiscal year and balance type */ public class PosterOutputSummaryBalanceTypeFiscalYearTotal extends PosterOutputSummaryBalanceTypeTotal { private Integer universityFiscalYear; /** * Constructs a PosterOutputSummaryBalanceTypeFiscalYearTotal * @param balanceTypeCode the balance type code totalled * @param universityFiscalYear the fiscal year totalled */ public PosterOutputSummaryBalanceTypeFiscalYearTotal(String balanceTypeCode, Integer universityFiscalYear) { super(balanceTypeCode); this.universityFiscalYear = universityFiscalYear; } /** * Gets the universityFiscalYear attribute. * @return Returns the universityFiscalYear. */ public Integer getUniversityFiscalYear() { return universityFiscalYear; } /** * @see org.kuali.kfs.gl.businessobject.PosterOutputSummaryBalanceTypeTotal#getSummaryMessageName() */ protected String getSummaryMessageName() { return KFSKeyConstants.MESSAGE_REPORT_POSTER_OUTPUT_SUMMARY_BALANCE_TYPE_FISCAL_YEAR_TOTAL; } /** * @see org.kuali.kfs.gl.businessobject.PosterOutputSummaryBalanceTypeTotal#getSummaryMessageParameters() */ @Override protected String[] getSummaryMessageParameters() { return new String[] { this.getUniversityFiscalYear().toString(), this.getBalanceTypeCode() }; } /** * A map of the "keys" of this transient business object * @see org.kuali.rice.krad.bo.BusinessObjectBase#toStringMapper() */ @Override protected LinkedHashMap toStringMapper_RICE20_REFACTORME() { LinkedHashMap pks = new LinkedHashMap<String, Object>(); pks.put("universityFiscalYear", this.getUniversityFiscalYear()); pks.put("balanceTypeCode",this.getBalanceTypeCode()); pks.put("objectTypeCode",this.getObjectTypeCode()); pks.put("creditAmount",this.getCreditAmount()); pks.put("debitAmount",this.getDebitAmount()); pks.put("budgetAmount",this.getBudgetAmount()); pks.put("netAmount",this.getNetAmount()); return pks; } }