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.kra.routingform.bo;
18:
19: import java.util.LinkedHashMap;
20:
21: import org.kuali.core.bo.PersistableBusinessObjectBase;
22:
23: /**
24: *
25: */
26: public class Keyword extends PersistableBusinessObjectBase {
27:
28: private String routingFormKeywordDescription;
29: private boolean dataObjectMaintenanceCodeActiveIndicator;
30:
31: /**
32: * Default constructor.
33: */
34: public Keyword() {
35:
36: }
37:
38: /**
39: * Gets the routingFormKeywordDescription attribute.
40: *
41: * @return Returns the routingFormKeywordDescription
42: */
43: public String getRoutingFormKeywordDescription() {
44: return routingFormKeywordDescription;
45: }
46:
47: /**
48: * Sets the routingFormKeywordDescription attribute.
49: *
50: * @param routingFormKeywordDescription The routingFormKeywordDescription to set.
51: */
52: public void setRoutingFormKeywordDescription(
53: String routingFormKeywordDescription) {
54: this .routingFormKeywordDescription = routingFormKeywordDescription;
55: }
56:
57: /**
58: * Gets the dataObjectMaintenanceCodeActiveIndicator attribute.
59: *
60: * @return Returns the dataObjectMaintenanceCodeActiveIndicator
61: */
62: public boolean isDataObjectMaintenanceCodeActiveIndicator() {
63: return dataObjectMaintenanceCodeActiveIndicator;
64: }
65:
66: /**
67: * Sets the dataObjectMaintenanceCodeActiveIndicator attribute.
68: *
69: * @param dataObjectMaintenanceCodeActiveIndicator The dataObjectMaintenanceCodeActiveIndicator to set.
70: */
71: public void setDataObjectMaintenanceCodeActiveIndicator(
72: boolean dataObjectMaintenanceCodeActiveIndicator) {
73: this .dataObjectMaintenanceCodeActiveIndicator = dataObjectMaintenanceCodeActiveIndicator;
74: }
75:
76: /**
77: * @see org.kuali.core.bo.BusinessObjectBase#toStringMapper()
78: */
79: protected LinkedHashMap toStringMapper() {
80: LinkedHashMap m = new LinkedHashMap();
81: m.put("routingFormKeywordDescription",
82: this.routingFormKeywordDescription);
83: return m;
84: }
85: }
|