View Javadoc
1   /*
2    * Copyright 2013 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.ole.coa.businessobject.Chart;
20  import org.kuali.ole.coa.businessobject.ObjectCode;
21  
22  import java.io.Serializable;
23  
24  
25  public class OleFundLookup implements Serializable {
26  
27      private String chartOfAccountsCode;
28      private String accountNumber;
29      private String objectCode;
30      private String organizationCode;
31      private String keyword;
32      private Integer universityFiscalYear;
33      private boolean active;
34      private Chart chart;
35      private Account account;
36      private ObjectCode financialObject;
37      private String accountName;
38      private String intialFundBalance;
39      private String cashBalance;
40      private String freeBalance;
41      private String intialBudgetAllocation;
42      private String netAllocation;
43      private String encumbrances;
44      private String sumPaidInvoice;
45      private String sumUnpaidInvoice;
46      private String expendedPercentage;
47      private String expenEncumPercentage;
48  
49      public String getChartOfAccountsCode() {
50          return chartOfAccountsCode;
51      }
52  
53      public void setChartOfAccountsCode(String chartOfAccountsCode) {
54          this.chartOfAccountsCode = chartOfAccountsCode;
55      }
56  
57      public String getAccountNumber() {
58          return accountNumber;
59      }
60  
61      public void setAccountNumber(String accountNumber) {
62          this.accountNumber = accountNumber;
63      }
64  
65      public String getObjectCode() {
66          return objectCode;
67      }
68  
69      public void setObjectCode(String objectCode) {
70          this.objectCode = objectCode;
71      }
72  
73      public String getOrganizationCode() {
74          return organizationCode;
75      }
76  
77      public void setOrganizationCode(String organizationCode) {
78          this.organizationCode = organizationCode;
79      }
80  
81      public String getKeyword() {
82          return keyword;
83      }
84  
85      public void setKeyword(String keyword) {
86          this.keyword = keyword;
87      }
88  
89      public Integer getUniversityFiscalYear() {
90          return universityFiscalYear;
91      }
92  
93      public void setUniversityFiscalYear(Integer universityFiscalYear) {
94          this.universityFiscalYear = universityFiscalYear;
95      }
96  
97      public boolean isActive() {
98          return active;
99      }
100 
101     public void setActive(boolean active) {
102         this.active = active;
103     }
104 
105     public Chart getChart() {
106         return chart;
107     }
108 
109     public void setChart(Chart chart) {
110         this.chart = chart;
111     }
112 
113     public Account getAccount() {
114         return account;
115     }
116 
117     public void setAccount(Account account) {
118         this.account = account;
119     }
120 
121     public ObjectCode getFinancialObject() {
122         return financialObject;
123     }
124 
125     public void setFinancialObject(ObjectCode financialObject) {
126         this.financialObject = financialObject;
127     }
128 
129     public String getAccountName() {
130         return accountName;
131     }
132 
133     public void setAccountName(String accountName) {
134         this.accountName = accountName;
135     }
136 
137     public String getIntialFundBalance() {
138         return intialFundBalance;
139     }
140 
141     public void setIntialFundBalance(String intialFundBalance) {
142         this.intialFundBalance = intialFundBalance;
143     }
144 
145     public String getCashBalance() {
146         return cashBalance;
147     }
148 
149     public void setCashBalance(String cashBalance) {
150         this.cashBalance = cashBalance;
151     }
152 
153     public String getFreeBalance() {
154         return freeBalance;
155     }
156 
157     public void setFreeBalance(String freeBalance) {
158         this.freeBalance = freeBalance;
159     }
160 
161     public String getIntialBudgetAllocation() {
162         return intialBudgetAllocation;
163     }
164 
165     public void setIntialBudgetAllocation(String intialBudgetAllocation) {
166         this.intialBudgetAllocation = intialBudgetAllocation;
167     }
168 
169     public String getNetAllocation() {
170         return netAllocation;
171     }
172 
173     public void setNetAllocation(String netAllocation) {
174         this.netAllocation = netAllocation;
175     }
176 
177     public String getEncumbrances() {
178         return encumbrances;
179     }
180 
181     public void setEncumbrances(String encumbrances) {
182         this.encumbrances = encumbrances;
183     }
184 
185     public String getSumPaidInvoice() {
186         return sumPaidInvoice;
187     }
188 
189     public void setSumPaidInvoice(String sumPaidInvoice) {
190         this.sumPaidInvoice = sumPaidInvoice;
191     }
192 
193     public String getSumUnpaidInvoice() {
194         return sumUnpaidInvoice;
195     }
196 
197     public void setSumUnpaidInvoice(String sumUnpaidInvoice) {
198         this.sumUnpaidInvoice = sumUnpaidInvoice;
199     }
200 
201     public String getExpendedPercentage() {
202         return expendedPercentage;
203     }
204 
205     public void setExpendedPercentage(String expendedPercentage) {
206         this.expendedPercentage = expendedPercentage;
207     }
208 
209     public String getExpenEncumPercentage() {
210         return expenEncumPercentage;
211     }
212 
213     public void setExpenEncumPercentage(String expenEncumPercentage) {
214         this.expenEncumPercentage = expenEncumPercentage;
215     }
216 
217 
218 }