001: /*
002: * Copyright 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: package org.kuali.core.bo;
017:
018: import java.util.LinkedHashMap;
019:
020: /**
021: * @author Kuali Rice Team (kuali-rice@googlegroups.com)
022: */
023: public class DocumentGroup extends PersistableBusinessObjectBase {
024:
025: private String financialDocumentGroupCode;
026: private String financialDocumentGroupName;
027: private String financialDocumentClassCode;
028:
029: /**
030: * Default constructor.
031: */
032: public DocumentGroup() {
033:
034: }
035:
036: /**
037: * Gets the financialDocumentGroupCode attribute.
038: *
039: * @return Returns the financialDocumentGroupCode
040: *
041: */
042: public String getFinancialDocumentGroupCode() {
043: return financialDocumentGroupCode;
044: }
045:
046: /**
047: * Sets the financialDocumentGroupCode attribute.
048: *
049: * @param financialDocumentGroupCode The financialDocumentGroupCode to set.
050: *
051: */
052: public void setFinancialDocumentGroupCode(
053: String financialDocumentGroupCode) {
054: this .financialDocumentGroupCode = financialDocumentGroupCode;
055: }
056:
057: /**
058: * Gets the financialDocumentGroupName attribute.
059: *
060: * @return Returns the financialDocumentGroupName
061: *
062: */
063: public String getFinancialDocumentGroupName() {
064: return financialDocumentGroupName;
065: }
066:
067: /**
068: * Sets the financialDocumentGroupName attribute.
069: *
070: * @param financialDocumentGroupName The financialDocumentGroupName to set.
071: *
072: */
073: public void setFinancialDocumentGroupName(
074: String financialDocumentGroupName) {
075: this .financialDocumentGroupName = financialDocumentGroupName;
076: }
077:
078: /**
079: * Gets the financialDocumentClassCode attribute.
080: *
081: * @return Returns the financialDocumentClassCode
082: *
083: */
084: public String getFinancialDocumentClassCode() {
085: return financialDocumentClassCode;
086: }
087:
088: /**
089: * Sets the financialDocumentClassCode attribute.
090: *
091: * @param financialDocumentClassCode The financialDocumentClassCode to set.
092: *
093: */
094: public void setFinancialDocumentClassCode(
095: String financialDocumentClassCode) {
096: this .financialDocumentClassCode = financialDocumentClassCode;
097: }
098:
099: /**
100: * @see org.kuali.core.bo.BusinessObjectBase#toStringMapper()
101: */
102: protected LinkedHashMap toStringMapper() {
103: LinkedHashMap m = new LinkedHashMap();
104: m.put("financialDocumentGroupCode",
105: this.financialDocumentGroupCode);
106: return m;
107: }
108: }
|