/* * 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.cg.businessobject; import java.util.LinkedHashMap; import org.kuali.kfs.integration.cg.ContractsAndGrantsCfda; import org.kuali.rice.core.api.mo.common.active.MutableInactivatable; import org.kuali.rice.krad.bo.PersistableBusinessObjectBase; /** * Instances of this class refer to Catalog of Federal Domestic Assistance codes. Some of these codes are taken directly from a * government web-site. Additional codes can be created manually however. Codes can be updated automatically via the CfdaBatchStep. */ public class CFDA extends PersistableBusinessObjectBase implements ContractsAndGrantsCfda, MutableInactivatable { private String cfdaNumber; private String cfdaProgramTitleName; private String cfdaMaintenanceTypeId; private boolean active; /** * Gets the cfdaNumber attribute. * * @return Returns the cfdaNumber */ @Override public String getCfdaNumber() { return cfdaNumber; } /** * Sets the cfdaNumber attribute. * * @param cfdaNumber The cfdaNumber to set. */ public void setCfdaNumber(String cfdaNumber) { this.cfdaNumber = cfdaNumber; } /** * Gets the cfdaProgramTitleName attribute. * * @return Returns the cfdaProgramTitleName */ @Override public String getCfdaProgramTitleName() { return cfdaProgramTitleName; } /** * Sets the cfdaProgramTitleName attribute. * * @param cfdaProgramTitleName The cfdaProgramTitleName to set. */ public void setCfdaProgramTitleName(String cfdaProgramTitleName) { this.cfdaProgramTitleName = cfdaProgramTitleName; } /** * Gets the cfdaMaintenanceTypeId attribute. * * @return Returns the cfdaMaintenanceTypeId */ @Override public String getCfdaMaintenanceTypeId() { return cfdaMaintenanceTypeId; } /** * Sets the cfdaMaintenanceTypeId attribute. * * @param cfdaMaintenanceTypeId The cfdaMaintenanceTypeId to set. */ public void setCfdaMaintenanceTypeId(String cfdaMaintenanceTypeId) { this.cfdaMaintenanceTypeId = cfdaMaintenanceTypeId; } /** * @see org.kuali.rice.kns.bo.BusinessObjectBase#toStringMapper() */ protected LinkedHashMap toStringMapper() { LinkedHashMap m = new LinkedHashMap(); m.put("cfdaNumber", this.cfdaNumber); return m; } /** * This method gets the active value. * * @return The value of the active attribute. */ @Override public boolean isActive() { return active; } /** * This method sets the active for this object. * * @param active The value to be assigned to the active attribute. */ @Override public void setActive(boolean active) { this.active = active; } }