View Javadoc
1   /*
2    * Copyright 2011 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.math.BigDecimal;
19  
20  import org.kuali.ole.coa.businessobject.IndirectCostRecoveryAccount;
21  
22  public class IndirectCostRecoveryAccountDistributionMetadata {
23      
24      private String indirectCostRecoveryFinCoaCode;
25      private String indirectCostRecoveryAccountNumber;
26      private BigDecimal accountLinePercent;
27      
28      /**
29       * @param icrAccount
30       */
31      public IndirectCostRecoveryAccountDistributionMetadata(IndirectCostRecoveryAccount icrAccount) {
32          this.indirectCostRecoveryFinCoaCode = icrAccount.getIndirectCostRecoveryFinCoaCode();
33          this.indirectCostRecoveryAccountNumber = icrAccount.getIndirectCostRecoveryAccountNumber();
34          this.accountLinePercent = icrAccount.getAccountLinePercent();
35      }
36      public String getIndirectCostRecoveryFinCoaCode() {
37          return indirectCostRecoveryFinCoaCode;
38      }
39      public String getIndirectCostRecoveryAccountNumber() {
40          return indirectCostRecoveryAccountNumber;
41      }
42      public BigDecimal getAccountLinePercent() {
43          return accountLinePercent;
44      }
45      public void setIndirectCostRecoveryFinCoaCode(String indirectCostRecoveryFinCoaCode) {
46          this.indirectCostRecoveryFinCoaCode = indirectCostRecoveryFinCoaCode;
47      }
48      public void setIndirectCostRecoveryAccountNumber(String indirectCostRecoveryAccountNumber) {
49          this.indirectCostRecoveryAccountNumber = indirectCostRecoveryAccountNumber;
50      }
51      public void setAccountLinePercent(BigDecimal accountLinePercent) {
52          this.accountLinePercent = accountLinePercent;
53      } 
54      
55      
56  }