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.cg.bo;
018:
019: import java.util.LinkedHashMap;
020:
021: import org.kuali.core.bo.PersistableBusinessObjectBase;
022:
023: /**
024: *
025: */
026: public class LetterOfCreditFundGroup extends
027: PersistableBusinessObjectBase {
028:
029: private String letterOfCreditFundGroupCode;
030: private String letterOfCreditFundGroupDescription;
031: private boolean rowActiveIndicator;
032:
033: /**
034: * Default constructor.
035: */
036: public LetterOfCreditFundGroup() {
037: }
038:
039: /**
040: * Gets the letterOfCreditFundGroupCode attribute.
041: *
042: * @return Returns the letterOfCreditFundGroupCode
043: */
044: public String getLetterOfCreditFundGroupCode() {
045: return letterOfCreditFundGroupCode;
046: }
047:
048: /**
049: * Sets the letterOfCreditFundGroupCode attribute.
050: *
051: * @param letterOfCreditFundGroupCode The letterOfCreditFundGroupCode to set.
052: */
053: public void setLetterOfCreditFundGroupCode(
054: String letterOfCreditFundGroupCode) {
055: this .letterOfCreditFundGroupCode = letterOfCreditFundGroupCode;
056: }
057:
058: /**
059: * Gets the letterOfCreditFundGroupDescription attribute.
060: *
061: * @return Returns the letterOfCreditFundGroupDescription
062: */
063: public String getLetterOfCreditFundGroupDescription() {
064: return letterOfCreditFundGroupDescription;
065: }
066:
067: /**
068: * Sets the letterOfCreditFundGroupDescription attribute.
069: *
070: * @param letterOfCreditFundGroupDescription The letterOfCreditFundGroupDescription to set.
071: */
072: public void setLetterOfCreditFundGroupDescription(
073: String letterOfCreditFundGroupDescription) {
074: this .letterOfCreditFundGroupDescription = letterOfCreditFundGroupDescription;
075: }
076:
077: /**
078: * Gets the rowActiveIndicator attribute.
079: *
080: * @return Returns the rowActiveIndicator.
081: */
082: public boolean isRowActiveIndicator() {
083: return rowActiveIndicator;
084: }
085:
086: /**
087: * Sets the rowActiveIndicator attribute value.
088: *
089: * @param rowActiveIndicator The rowActiveIndicator to set.
090: */
091: public void setRowActiveIndicator(boolean rowActiveIndicator) {
092: this .rowActiveIndicator = rowActiveIndicator;
093: }
094:
095: /**
096: * @see org.kuali.core.bo.BusinessObjectBase#toStringMapper()
097: */
098: protected LinkedHashMap toStringMapper() {
099: LinkedHashMap m = new LinkedHashMap();
100: m.put("letterOfCreditFundGroupCode",
101: this.letterOfCreditFundGroupCode);
102: return m;
103: }
104: }
|