1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.kuali.ole.module.purap.businessobject;
18
19 import org.kuali.rice.core.api.mo.common.active.MutableInactivatable;
20 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
21
22 import java.util.LinkedHashMap;
23
24
25
26
27 public class FundingSource extends PersistableBusinessObjectBase implements MutableInactivatable {
28
29 private String fundingSourceCode;
30 private String fundingSourceDescription;
31 private boolean active;
32
33
34
35
36 public FundingSource() {
37
38 }
39
40 public boolean isActive() {
41 return active;
42 }
43
44 public void setActive(boolean active) {
45 this.active = active;
46 }
47
48 public String getFundingSourceCode() {
49 return fundingSourceCode;
50 }
51
52 public void setFundingSourceCode(String fundingSourceCode) {
53 this.fundingSourceCode = fundingSourceCode;
54 }
55
56 public String getFundingSourceDescription() {
57 return fundingSourceDescription;
58 }
59
60 public void setFundingSourceDescription(String fundingSourceDescription) {
61 this.fundingSourceDescription = fundingSourceDescription;
62 }
63
64
65
66
67 protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
68 LinkedHashMap m = new LinkedHashMap();
69 m.put("fundingSourceCode", this.fundingSourceCode);
70 return m;
71 }
72 }