View Javadoc

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