1 package org.kuali.ole.select.bo;
2
3 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4
5 import java.util.LinkedHashMap;
6
7 public class OleBudgetCode extends PersistableBusinessObjectBase {
8 private String budgetCodeId;
9 private String inputValue;
10 private String chartCode;
11 private String fundCode;
12 private String objectCode;
13 private boolean active;
14
15 public String getInputValue() {
16 return inputValue;
17 }
18
19 public void setInputValue(String inputValue) {
20 this.inputValue = inputValue;
21 }
22
23 public void setBudgetCodeId(String budgetCodeId) {
24 this.budgetCodeId = budgetCodeId;
25 }
26
27 public String getBudgetCodeId() {
28 return budgetCodeId;
29 }
30
31 public String getChartCode() {
32 return chartCode;
33 }
34
35 public void setChartCode(String chartCode) {
36 this.chartCode = chartCode;
37 }
38
39 public String getFundCode() {
40 return fundCode;
41 }
42
43 public void setFundCode(String fundCode) {
44 this.fundCode = fundCode;
45 }
46
47 public String getObjectCode() {
48 return objectCode;
49 }
50
51 public void setObjectCode(String objectCode) {
52 this.objectCode = objectCode;
53 }
54
55 public boolean isActive() {
56 return active;
57 }
58
59 public void setActive(boolean active) {
60 this.active = active;
61 }
62
63 protected LinkedHashMap toStringMapper() {
64 LinkedHashMap toStringMap = new LinkedHashMap();
65 toStringMap.put("budgetCodeId", budgetCodeId);
66 toStringMap.put("chartCode", chartCode);
67 toStringMap.put("fundCode", fundCode);
68 toStringMap.put("objectCode", objectCode);
69 return toStringMap;
70 }
71 }