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.gl.batch.service.impl;
017
018 import org.kuali.kfs.coa.businessobject.Account;
019
020 public class IndirectCostRecoveryGenerationMetadata {
021 private String indirectCostRecoveryTypeCode;
022 private String financialIcrSeriesIdentifier;
023 private String indirectCostRcvyFinCoaCode;
024 private String indirectCostRecoveryAcctNbr;
025 private Account indirectCostRecoveryAcct;
026
027 public String getIndirectCostRecoveryTypeCode() {
028 return indirectCostRecoveryTypeCode;
029 }
030 public void setIndirectCostRecoveryTypeCode(String indirectCostRecoveryTypeCode) {
031 this.indirectCostRecoveryTypeCode = indirectCostRecoveryTypeCode;
032 }
033 public String getFinancialIcrSeriesIdentifier() {
034 return financialIcrSeriesIdentifier;
035 }
036 public void setFinancialIcrSeriesIdentifier(String financialIcrSeriesIdentifier) {
037 this.financialIcrSeriesIdentifier = financialIcrSeriesIdentifier;
038 }
039 public String getIndirectCostRcvyFinCoaCode() {
040 return indirectCostRcvyFinCoaCode;
041 }
042 public void setIndirectCostRcvyFinCoaCode(String indirectCostRcvyFinCoaCode) {
043 this.indirectCostRcvyFinCoaCode = indirectCostRcvyFinCoaCode;
044 }
045 public String getIndirectCostRecoveryAcctNbr() {
046 return indirectCostRecoveryAcctNbr;
047 }
048 public void setIndirectCostRecoveryAcctNbr(String indirectCostRecoveryAcctNbr) {
049 this.indirectCostRecoveryAcctNbr = indirectCostRecoveryAcctNbr;
050 }
051 public Account getIndirectCostRecoveryAcct() {
052 return indirectCostRecoveryAcct;
053 }
054 public void setIndirectCostRecoveryAcct(Account indirectCostRecoveryAcct) {
055 this.indirectCostRecoveryAcct = indirectCostRecoveryAcct;
056 }
057 }