01: /*
02: * Copyright 2005-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: package org.kuali.module.chart.bo;
17:
18: import org.kuali.core.bo.KualiCodeBase;
19:
20: /**
21: *
22: */
23: public class ObjSubTyp extends KualiCodeBase {
24:
25: /**
26: * Default no-arg constructor.
27: */
28: public ObjSubTyp() {
29: super .setActive(true); // always active
30: }
31:
32: /**
33: * Gets the financialObjectSubTypeCode attribute.
34: *
35: * @return Returns the financialObjectSubTypeCode
36: */
37: public String getFinancialObjectSubTypeCode() {
38: return this .getCode();
39: }
40:
41: /**
42: * Sets the financialObjectSubTypeCode attribute.
43: *
44: * @param financialObjectSubTypeCode The financialObjectSubTypeCode to set.
45: */
46: public void setFinancialObjectSubTypeCode(
47: String financialObjectSubTypeCode) {
48: this .setCode(financialObjectSubTypeCode);
49: }
50:
51: /**
52: * Gets the financialObjectSubTypeName attribute.
53: *
54: * @return Returns the financialObjectSubTypeName
55: */
56: public String getFinancialObjectSubTypeName() {
57: return this .getName();
58: }
59:
60: /**
61: * Sets the financialObjectSubTypeName attribute.
62: *
63: * @param financialObjectSubTypeName The financialObjectSubTypeName to set.
64: */
65: public void setFinancialObjectSubTypeName(
66: String financialObjectSubTypeName) {
67: this.setName(financialObjectSubTypeName);
68: }
69:
70: }
|