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