1 /*
2 * Copyright 2006 The Kuali Foundation
3 *
4 * Licensed under the Educational Community License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.opensource.org/licenses/ecl2.php
9 *
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.ole.coa.businessobject;
18
19 import java.util.LinkedHashMap;
20
21 import org.kuali.rice.core.api.mo.common.active.MutableInactivatable;
22 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
23
24 /**
25 *
26 */
27 public class OrganizationReversionCategory extends PersistableBusinessObjectBase implements MutableInactivatable {
28
29 private String organizationReversionCategoryCode;
30 private String organizationReversionCategoryName;
31 private String organizationReversionSortCode;
32 private boolean active;
33
34 /**
35 * Default constructor.
36 */
37 public OrganizationReversionCategory() {
38
39 }
40
41 /**
42 * Gets the organizationReversionCategoryCode attribute.
43 *
44 * @return Returns the organizationReversionCategoryCode
45 */
46 public String getOrganizationReversionCategoryCode() {
47 return organizationReversionCategoryCode;
48 }
49
50 /**
51 * Sets the organizationReversionCategoryCode attribute.
52 *
53 * @param organizationReversionCategoryCode The organizationReversionCategoryCode to set.
54 */
55 public void setOrganizationReversionCategoryCode(String organizationReversionCategoryCode) {
56 this.organizationReversionCategoryCode = organizationReversionCategoryCode;
57 }
58
59
60 /**
61 * Gets the organizationReversionCategoryName attribute.
62 *
63 * @return Returns the organizationReversionCategoryName
64 */
65 public String getOrganizationReversionCategoryName() {
66 return organizationReversionCategoryName;
67 }
68
69 /**
70 * Sets the organizationReversionCategoryName attribute.
71 *
72 * @param organizationReversionCategoryName The organizationReversionCategoryName to set.
73 */
74 public void setOrganizationReversionCategoryName(String organizationReversionCategoryName) {
75 this.organizationReversionCategoryName = organizationReversionCategoryName;
76 }
77
78
79 /**
80 * Gets the organizationReversionSortCode attribute.
81 *
82 * @return Returns the organizationReversionSortCode
83 */
84 public String getOrganizationReversionSortCode() {
85 return organizationReversionSortCode;
86 }
87
88 /**
89 * Sets the organizationReversionSortCode attribute.
90 *
91 * @param organizationReversionSortCode The organizationReversionSortCode to set.
92 */
93 public void setOrganizationReversionSortCode(String organizationReversionSortCode) {
94 this.organizationReversionSortCode = organizationReversionSortCode;
95 }
96
97 /**
98 * Gets the active attribute.
99 *
100 * @return Returns the active.
101 */
102 public boolean isActive() {
103 return active;
104 }
105
106 /**
107 * Sets the active attribute value.
108 *
109 * @param active The active to set.
110 */
111 public void setActive(boolean active) {
112 this.active = active;
113 }
114
115 /**
116 * @see org.kuali.rice.krad.bo.BusinessObjectBase#toStringMapper()
117 */
118 protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
119 LinkedHashMap m = new LinkedHashMap();
120 return m;
121 }
122
123 }