01: /*
02: * Copyright 2006-2007 The Kuali Foundation.
03: *
04: * Licensed under the Educational Community License, Version 1.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.opensource.org/licenses/ecl1.php
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16:
17: package org.kuali.module.chart.bo;
18:
19: import java.util.LinkedHashMap;
20:
21: import org.kuali.core.bo.PersistableBusinessObjectBase;
22:
23: /**
24: *
25: */
26: public class UniversityBudgetOfficeFunction extends
27: PersistableBusinessObjectBase {
28:
29: private String financialUniversityBudgetOfficeFunctionCode;
30: private String financialUniversityBudgetOfficeFunctionName;
31:
32: /**
33: * Default constructor.
34: */
35: public UniversityBudgetOfficeFunction() {
36:
37: }
38:
39: /**
40: * Gets the financialUniversityBudgetOfficeFunctionCode attribute.
41: *
42: * @return Returns the financialUniversityBudgetOfficeFunctionCode
43: */
44: public String getFinancialUniversityBudgetOfficeFunctionCode() {
45: return financialUniversityBudgetOfficeFunctionCode;
46: }
47:
48: /**
49: * Sets the financialUniversityBudgetOfficeFunctionCode attribute.
50: *
51: * @param financialUniversityBudgetOfficeFunctionCode The financialUniversityBudgetOfficeFunctionCode to set.
52: */
53: public void setFinancialUniversityBudgetOfficeFunctionCode(
54: String financialUniversityBudgetOfficeFunctionCode) {
55: this .financialUniversityBudgetOfficeFunctionCode = financialUniversityBudgetOfficeFunctionCode;
56: }
57:
58: /**
59: * Gets the financialUniversityBudgetOfficeFunctionName attribute.
60: *
61: * @return Returns the financialUniversityBudgetOfficeFunctionName
62: */
63: public String getFinancialUniversityBudgetOfficeFunctionName() {
64: return financialUniversityBudgetOfficeFunctionName;
65: }
66:
67: /**
68: * Sets the financialUniversityBudgetOfficeFunctionName attribute.
69: *
70: * @param financialUniversityBudgetOfficeFunctionName The financialUniversityBudgetOfficeFunctionName to set.
71: */
72: public void setFinancialUniversityBudgetOfficeFunctionName(
73: String financialUniversityBudgetOfficeFunctionName) {
74: this .financialUniversityBudgetOfficeFunctionName = financialUniversityBudgetOfficeFunctionName;
75: }
76:
77: /**
78: * @see org.kuali.core.bo.BusinessObjectBase#toStringMapper()
79: */
80: protected LinkedHashMap toStringMapper() {
81: LinkedHashMap m = new LinkedHashMap();
82: m.put("financialUniversityBudgetOfficeFunctionCode",
83: this.financialUniversityBudgetOfficeFunctionCode);
84: return m;
85: }
86: }
|