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.module.cg.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 LetterOfCreditFundGroup extends PersistableBusinessObjectBase implements MutableInactivatable {
28
29 private String letterOfCreditFundGroupCode;
30 private String letterOfCreditFundGroupDescription;
31 private boolean active;
32
33 /**
34 * Default constructor.
35 */
36 public LetterOfCreditFundGroup() {
37 }
38
39 /**
40 * Gets the letterOfCreditFundGroupCode attribute.
41 *
42 * @return Returns the letterOfCreditFundGroupCode
43 */
44 public String getLetterOfCreditFundGroupCode() {
45 return letterOfCreditFundGroupCode;
46 }
47
48 /**
49 * Sets the letterOfCreditFundGroupCode attribute.
50 *
51 * @param letterOfCreditFundGroupCode The letterOfCreditFundGroupCode to set.
52 */
53 public void setLetterOfCreditFundGroupCode(String letterOfCreditFundGroupCode) {
54 this.letterOfCreditFundGroupCode = letterOfCreditFundGroupCode;
55 }
56
57
58 /**
59 * Gets the letterOfCreditFundGroupDescription attribute.
60 *
61 * @return Returns the letterOfCreditFundGroupDescription
62 */
63 public String getLetterOfCreditFundGroupDescription() {
64 return letterOfCreditFundGroupDescription;
65 }
66
67 /**
68 * Sets the letterOfCreditFundGroupDescription attribute.
69 *
70 * @param letterOfCreditFundGroupDescription The letterOfCreditFundGroupDescription to set.
71 */
72 public void setLetterOfCreditFundGroupDescription(String letterOfCreditFundGroupDescription) {
73 this.letterOfCreditFundGroupDescription = letterOfCreditFundGroupDescription;
74 }
75
76 /**
77 * Gets the active attribute.
78 *
79 * @return Returns the active.
80 */
81 public boolean isActive() {
82 return active;
83 }
84
85 /**
86 * Sets the active attribute value.
87 *
88 * @param active The active to set.
89 */
90 public void setActive(boolean active) {
91 this.active = active;
92 }
93
94 /**
95 * @see org.kuali.rice.krad.bo.BusinessObjectBase#toStringMapper()
96 */
97 protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
98 LinkedHashMap m = new LinkedHashMap();
99 m.put("letterOfCreditFundGroupCode", this.letterOfCreditFundGroupCode);
100 return m;
101 }
102 }