1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
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 }