View Javadoc
1   /*
2    * Copyright 2012 The Kuali Foundation.
3    * 
4    * Licensed under the Educational Community License, Version 1.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/ecl1.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  package org.kuali.ole.select.businessobject;
17  
18  import org.kuali.ole.coa.businessobject.Account;
19  import org.kuali.rice.core.api.mo.common.active.MutableInactivatable;
20  import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
21  
22  import java.util.LinkedHashMap;
23  
24  public class OleLegacyFundCode extends PersistableBusinessObjectBase implements MutableInactivatable {
25  
26      private Integer legacyFundCodeIdentifier;
27      private String accountNumber;
28      private String chartOfAccountsCode;
29      private String legacyFundCode;
30      private String legacyFundCodeNote;
31  
32      private Account account;
33  
34      private boolean active;
35  
36  
37      public Integer getLegacyFundCodeIdentifier() {
38          return legacyFundCodeIdentifier;
39      }
40  
41      public void setLegacyFundCodeIdentifier(Integer legacyFundCodeIdentifier) {
42          this.legacyFundCodeIdentifier = legacyFundCodeIdentifier;
43      }
44  
45      public String getAccountNumber() {
46          return accountNumber;
47      }
48  
49      public void setAccountNumber(String accountNumber) {
50          this.accountNumber = accountNumber;
51      }
52  
53  
54      public String getChartOfAccountsCode() {
55          return chartOfAccountsCode;
56      }
57  
58      public void setChartOfAccountsCode(String chartOfAccountsCode) {
59          this.chartOfAccountsCode = chartOfAccountsCode;
60      }
61  
62      public String getLegacyFundCode() {
63          return legacyFundCode;
64      }
65  
66      public void setLegacyFundCode(String legacyFundCode) {
67          this.legacyFundCode = legacyFundCode;
68      }
69  
70      public String getLegacyFundCodeNote() {
71          return legacyFundCodeNote;
72      }
73  
74      public void setLegacyFundCodeNote(String legacyFundCodeNote) {
75          this.legacyFundCodeNote = legacyFundCodeNote;
76      }
77  
78      public Account getAccount() {
79          return account;
80      }
81  
82      public void setAccount(Account account) {
83          this.account = account;
84      }
85  
86      public boolean isActive() {
87          return active;
88      }
89  
90      public void setActive(boolean active) {
91          this.active = active;
92      }
93  
94      protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
95          LinkedHashMap m = new LinkedHashMap();
96          m.put("legacyFundCodeIdentifier", legacyFundCodeIdentifier);
97          return m;
98      }
99  
100 }