001: /*
002: * Copyright 2006-2007 The Kuali Foundation.
003: *
004: * Licensed under the Educational Community License, Version 1.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/ecl1.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.module.chart.bo;
018:
019: import java.util.LinkedHashMap;
020:
021: import org.kuali.core.bo.PersistableBusinessObjectBase;
022:
023: /**
024: *
025: */
026: public class OrganizationReversionCategory extends
027: PersistableBusinessObjectBase {
028:
029: private String organizationReversionCategoryCode;
030: private String organizationReversionCategoryName;
031: private String organizationReversionSortCode;
032: private boolean organizationReversionCategoryActiveIndicator;
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(
056: String organizationReversionCategoryCode) {
057: this .organizationReversionCategoryCode = organizationReversionCategoryCode;
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(
075: String organizationReversionCategoryName) {
076: this .organizationReversionCategoryName = organizationReversionCategoryName;
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(
094: String organizationReversionSortCode) {
095: this .organizationReversionSortCode = organizationReversionSortCode;
096: }
097:
098: /**
099: * Gets the organizationReversionCategoryActiveIndicator attribute.
100: *
101: * @return Returns the organizationReversionCategoryActiveIndicator.
102: */
103: public boolean isOrganizationReversionCategoryActiveIndicator() {
104: return organizationReversionCategoryActiveIndicator;
105: }
106:
107: /**
108: * Sets the organizationReversionCategoryActiveIndicator attribute value.
109: *
110: * @param organizationReversionCategoryActiveIndicator The organizationReversionCategoryActiveIndicator to set.
111: */
112: public void setOrganizationReversionCategoryActiveIndicator(
113: boolean organizationReversionCategoryActiveIndicator) {
114: this .organizationReversionCategoryActiveIndicator = organizationReversionCategoryActiveIndicator;
115: }
116:
117: /**
118: * @see org.kuali.core.bo.BusinessObjectBase#toStringMapper()
119: */
120: protected LinkedHashMap toStringMapper() {
121: LinkedHashMap m = new LinkedHashMap();
122: return m;
123: }
124:
125: }
|