001 /*
002 * Copyright 2011 The Kuali Foundation.
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016
017 package org.kuali.kfs.coa.businessobject;
018
019 import java.util.LinkedHashMap;
020
021 import org.kuali.rice.kns.bo.Inactivateable;
022 import org.kuali.rice.kns.bo.PersistableBusinessObjectBase;
023
024 /**
025 *
026 */
027 public class OrganizationReversionCategory extends PersistableBusinessObjectBase implements Inactivateable {
028
029 private String organizationReversionCategoryCode;
030 private String organizationReversionCategoryName;
031 private String organizationReversionSortCode;
032 private boolean active;
033
034 /**
035 * Default constructor.
036 */
037 public OrganizationReversionCategory() {
038
039 }
040
041 /**
042 * Gets the organizationReversionCategoryCode attribute.
043 *
044 * @return Returns the organizationReversionCategoryCode
045 */
046 public String getOrganizationReversionCategoryCode() {
047 return organizationReversionCategoryCode;
048 }
049
050 /**
051 * Sets the organizationReversionCategoryCode attribute.
052 *
053 * @param organizationReversionCategoryCode The organizationReversionCategoryCode to set.
054 */
055 public void setOrganizationReversionCategoryCode(String organizationReversionCategoryCode) {
056 this.organizationReversionCategoryCode = organizationReversionCategoryCode;
057 }
058
059
060 /**
061 * Gets the organizationReversionCategoryName attribute.
062 *
063 * @return Returns the organizationReversionCategoryName
064 */
065 public String getOrganizationReversionCategoryName() {
066 return organizationReversionCategoryName;
067 }
068
069 /**
070 * Sets the organizationReversionCategoryName attribute.
071 *
072 * @param organizationReversionCategoryName The organizationReversionCategoryName to set.
073 */
074 public void setOrganizationReversionCategoryName(String organizationReversionCategoryName) {
075 this.organizationReversionCategoryName = organizationReversionCategoryName;
076 }
077
078
079 /**
080 * Gets the organizationReversionSortCode attribute.
081 *
082 * @return Returns the organizationReversionSortCode
083 */
084 public String getOrganizationReversionSortCode() {
085 return organizationReversionSortCode;
086 }
087
088 /**
089 * Sets the organizationReversionSortCode attribute.
090 *
091 * @param organizationReversionSortCode The organizationReversionSortCode to set.
092 */
093 public void setOrganizationReversionSortCode(String organizationReversionSortCode) {
094 this.organizationReversionSortCode = organizationReversionSortCode;
095 }
096
097 /**
098 * Gets the active attribute.
099 *
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.kns.bo.BusinessObjectBase#toStringMapper()
117 */
118 protected LinkedHashMap toStringMapper() {
119 LinkedHashMap m = new LinkedHashMap();
120 return m;
121 }
122
123 }