View Javadoc
1   /*
2    * Copyright 2008 The Kuali Foundation
3    * 
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    * http://www.opensource.org/licenses/ecl2.php
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.ole.gl.batch.service.impl;
17  
18  import java.util.ArrayList;
19  import java.util.List;
20  
21  public class IndirectCostRecoveryGenerationMetadata {
22      private String indirectCostRecoveryTypeCode;
23      private String financialIcrSeriesIdentifier;
24      
25      private List<IndirectCostRecoveryAccountDistributionMetadata> accountLists = new ArrayList<IndirectCostRecoveryAccountDistributionMetadata>();
26      
27      //keep these COA and Acct fields for service use
28      private String indirectCostRcvyFinCoaCode;
29      private String indirectCostRecoveryAcctNbr;
30  
31      public IndirectCostRecoveryGenerationMetadata(String indirectCostRecoveryTypeCode, String financialIcrSeriesIdentifier) {
32          this.indirectCostRecoveryTypeCode = indirectCostRecoveryTypeCode;
33          this.financialIcrSeriesIdentifier = financialIcrSeriesIdentifier;
34      }
35      public String getIndirectCostRecoveryTypeCode() {
36          return indirectCostRecoveryTypeCode;
37      }
38      public void setIndirectCostRecoveryTypeCode(String indirectCostRecoveryTypeCode) {
39          this.indirectCostRecoveryTypeCode = indirectCostRecoveryTypeCode;
40      }
41      public String getFinancialIcrSeriesIdentifier() {
42          return financialIcrSeriesIdentifier;
43      }
44      public void setFinancialIcrSeriesIdentifier(String financialIcrSeriesIdentifier) {
45          this.financialIcrSeriesIdentifier = financialIcrSeriesIdentifier;
46      }
47      public String getIndirectCostRcvyFinCoaCode() {
48          return indirectCostRcvyFinCoaCode;
49      }
50      public void setIndirectCostRcvyFinCoaCode(String indirectCostRcvyFinCoaCode) {
51          this.indirectCostRcvyFinCoaCode = indirectCostRcvyFinCoaCode;
52      }
53      public String getIndirectCostRecoveryAcctNbr() {
54          return indirectCostRecoveryAcctNbr;
55      }
56      public void setIndirectCostRecoveryAcctNbr(String indirectCostRecoveryAcctNbr) {
57          this.indirectCostRecoveryAcctNbr = indirectCostRecoveryAcctNbr;
58      }
59  
60      public List<IndirectCostRecoveryAccountDistributionMetadata> getAccountLists() {
61          return accountLists;
62      }
63      public void setAccountLists(List<IndirectCostRecoveryAccountDistributionMetadata> accountLists) {
64          this.accountLists = accountLists;
65      }
66  }