1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.kuali.ole.coa.businessobject;
18
19 import java.util.LinkedHashMap;
20
21 import org.apache.log4j.Logger;
22 import org.springframework.beans.BeanUtils;
23
24
25
26
27 public class PriorYearIndirectCostRecoveryAccount extends IndirectCostRecoveryAccount {
28 private static Logger LOG = Logger.getLogger(PriorYearIndirectCostRecoveryAccount.class);
29
30 private Integer priorYearIndirectCostRecoveryAccountGeneratedIdentifier;
31
32
33
34
35 public PriorYearIndirectCostRecoveryAccount() {
36 }
37
38 public PriorYearIndirectCostRecoveryAccount(IndirectCostRecoveryAccount icr) {
39 BeanUtils.copyProperties(icr,this);
40 }
41
42 public Integer getPriorYearIndirectCostRecoveryAccountGeneratedIdentifier() {
43 return priorYearIndirectCostRecoveryAccountGeneratedIdentifier;
44 }
45
46 public void setPriorYearIndirectCostRecoveryAccountGeneratedIdentifier(Integer priorYearIndirectCostRecoveryAccountGeneratedIdentifier) {
47 this.priorYearIndirectCostRecoveryAccountGeneratedIdentifier = priorYearIndirectCostRecoveryAccountGeneratedIdentifier;
48 }
49
50
51
52
53 protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
54 LinkedHashMap<String, String> m = new LinkedHashMap<String, String>();
55 if (this.priorYearIndirectCostRecoveryAccountGeneratedIdentifier != null) {
56 m.put("priorYearIndirectCostRecoveryAccountGeneratedIdentifier", this.priorYearIndirectCostRecoveryAccountGeneratedIdentifier.toString());
57 }
58 return m;
59 }
60
61 }