001package org.kuali.ole.select.bo;
002
003import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
004
005import java.util.LinkedHashMap;
006
007public class OleBudgetCode extends PersistableBusinessObjectBase {
008    private String budgetCodeId;
009    private String inputValue;
010    private String chartCode;
011    private String fundCode;
012    private String objectCode;
013    private boolean active;
014
015    public String getInputValue() {
016        return inputValue;
017    }
018
019    public void setInputValue(String inputValue) {
020        this.inputValue = inputValue;
021    }
022
023    public void setBudgetCodeId(String budgetCodeId) {
024        this.budgetCodeId = budgetCodeId;
025    }
026
027    public String getBudgetCodeId() {
028        return budgetCodeId;
029    }
030
031    public String getChartCode() {
032        return chartCode;
033    }
034
035    public void setChartCode(String chartCode) {
036        this.chartCode = chartCode;
037    }
038
039    public String getFundCode() {
040        return fundCode;
041    }
042
043    public void setFundCode(String fundCode) {
044        this.fundCode = fundCode;
045    }
046
047    public String getObjectCode() {
048        return objectCode;
049    }
050
051    public void setObjectCode(String objectCode) {
052        this.objectCode = objectCode;
053    }
054
055    public boolean isActive() {
056        return active;
057    }
058
059    public void setActive(boolean active) {
060        this.active = active;
061    }
062
063    protected LinkedHashMap toStringMapper() {
064        LinkedHashMap toStringMap = new LinkedHashMap();
065        toStringMap.put("budgetCodeId", budgetCodeId);
066        toStringMap.put("chartCode", chartCode);
067        toStringMap.put("fundCode", fundCode);
068        toStringMap.put("objectCode", objectCode);
069        return toStringMap;
070    }
071}