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 FederalFunction extends PersistableBusinessObjectBase {
27:
28: private String financialFederalFunctionCode;
29: private String financialFederalFunctionName;
30:
31: /**
32: * Default constructor.
33: */
34: public FederalFunction() {
35:
36: }
37:
38: /**
39: * Gets the financialFederalFunctionCode attribute.
40: *
41: * @return Returns the financialFederalFunctionCode
42: */
43: public String getFinancialFederalFunctionCode() {
44: return financialFederalFunctionCode;
45: }
46:
47: /**
48: * Sets the financialFederalFunctionCode attribute.
49: *
50: * @param financialFederalFunctionCode The financialFederalFunctionCode to set.
51: */
52: public void setFinancialFederalFunctionCode(
53: String financialFederalFunctionCode) {
54: this .financialFederalFunctionCode = financialFederalFunctionCode;
55: }
56:
57: /**
58: * Gets the financialFederalFunctionName attribute.
59: *
60: * @return Returns the financialFederalFunctionName
61: */
62: public String getFinancialFederalFunctionName() {
63: return financialFederalFunctionName;
64: }
65:
66: /**
67: * Sets the financialFederalFunctionName attribute.
68: *
69: * @param financialFederalFunctionName The financialFederalFunctionName to set.
70: */
71: public void setFinancialFederalFunctionName(
72: String financialFederalFunctionName) {
73: this .financialFederalFunctionName = financialFederalFunctionName;
74: }
75:
76: /**
77: * @see org.kuali.core.bo.BusinessObjectBase#toStringMapper()
78: */
79: protected LinkedHashMap toStringMapper() {
80: LinkedHashMap m = new LinkedHashMap();
81: m.put("financialFederalFunctionCode",
82: this.financialFederalFunctionCode);
83: return m;
84: }
85: }
|