/* * 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.module.ar.businessobject; import org.kuali.kfs.coa.businessobject.Chart; import org.kuali.kfs.coa.businessobject.ObjectCodeCurrent; import org.kuali.rice.krad.bo.PersistableBusinessObjectBase; /** * An object code associated with a Contracts & Grants Category */ public class CostCategoryObjectCode extends PersistableBusinessObjectBase implements CostCategoryDetail { private String categoryCode; private String chartOfAccountsCode; private String financialObjectCode; private boolean active; private Chart chart; private ObjectCodeCurrent objectCodeCurrent; @Override public String getCategoryCode() { return categoryCode; } public void setCategoryCode(String categoryCode) { this.categoryCode = categoryCode; } @Override public String getChartOfAccountsCode() { return chartOfAccountsCode; } public void setChartOfAccountsCode(String chartOfAccountsCode) { this.chartOfAccountsCode = chartOfAccountsCode; } public String getFinancialObjectCode() { return financialObjectCode; } public void setFinancialObjectCode(String financialObjectCode) { this.financialObjectCode = financialObjectCode; } public Chart getChart() { return chart; } public void setChart(Chart chart) { this.chart = chart; } public ObjectCodeCurrent getObjectCodeCurrent() { return objectCodeCurrent; } public void setObjectCodeCurrent(ObjectCodeCurrent objectCodeCurrent) { this.objectCodeCurrent = objectCodeCurrent; } @Override public boolean isActive() { return active; } @Override public void setActive(boolean active) { this.active = active; } }