001/*
002 * Copyright 2013 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 */
016package org.kuali.ole.select.businessobject;
017
018import org.kuali.ole.coa.businessobject.Account;
019import org.kuali.ole.coa.businessobject.Chart;
020import org.kuali.ole.coa.businessobject.ObjectCode;
021import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
022
023import java.io.Serializable;
024
025
026public class OleFundLookup extends PersistableBusinessObjectBase implements Serializable {
027
028    private String chartOfAccountsCode;
029    private String accountNumber;
030    private String objectCode;
031    private String organizationCode;
032    private String keyword;
033    private Integer universityFiscalYear;
034    private boolean active;
035    private Chart chart;
036    private Account account;
037    private ObjectCode financialObject;
038    private String accountName;
039    private String intialFundBalance;
040    private String cashBalance;
041    private String freeBalance;
042    private String intialBudgetAllocation;
043    private String netAllocation;
044    private String encumbrances;
045    private String sumPaidInvoice;
046    private String sumUnpaidInvoice;
047    private String expendedPercentage;
048    private String expenEncumPercentage;
049
050    public String getChartOfAccountsCode() {
051        return chartOfAccountsCode;
052    }
053
054    public void setChartOfAccountsCode(String chartOfAccountsCode) {
055        this.chartOfAccountsCode = chartOfAccountsCode;
056    }
057
058    public String getAccountNumber() {
059        return accountNumber;
060    }
061
062    public void setAccountNumber(String accountNumber) {
063        this.accountNumber = accountNumber;
064    }
065
066    public String getObjectCode() {
067        return objectCode;
068    }
069
070    public void setObjectCode(String objectCode) {
071        this.objectCode = objectCode;
072    }
073
074    public String getOrganizationCode() {
075        return organizationCode;
076    }
077
078    public void setOrganizationCode(String organizationCode) {
079        this.organizationCode = organizationCode;
080    }
081
082    public String getKeyword() {
083        return keyword;
084    }
085
086    public void setKeyword(String keyword) {
087        this.keyword = keyword;
088    }
089
090    public Integer getUniversityFiscalYear() {
091        return universityFiscalYear;
092    }
093
094    public void setUniversityFiscalYear(Integer universityFiscalYear) {
095        this.universityFiscalYear = universityFiscalYear;
096    }
097
098    public boolean isActive() {
099        return active;
100    }
101
102    public void setActive(boolean active) {
103        this.active = active;
104    }
105
106    public Chart getChart() {
107        return chart;
108    }
109
110    public void setChart(Chart chart) {
111        this.chart = chart;
112    }
113
114    public Account getAccount() {
115        return account;
116    }
117
118    public void setAccount(Account account) {
119        this.account = account;
120    }
121
122    public ObjectCode getFinancialObject() {
123        return financialObject;
124    }
125
126    public void setFinancialObject(ObjectCode financialObject) {
127        this.financialObject = financialObject;
128    }
129
130    public String getAccountName() {
131        return accountName;
132    }
133
134    public void setAccountName(String accountName) {
135        this.accountName = accountName;
136    }
137
138    public String getIntialFundBalance() {
139        return intialFundBalance;
140    }
141
142    public void setIntialFundBalance(String intialFundBalance) {
143        this.intialFundBalance = intialFundBalance;
144    }
145
146    public String getCashBalance() {
147        return cashBalance;
148    }
149
150    public void setCashBalance(String cashBalance) {
151        this.cashBalance = cashBalance;
152    }
153
154    public String getFreeBalance() {
155        return freeBalance;
156    }
157
158    public void setFreeBalance(String freeBalance) {
159        this.freeBalance = freeBalance;
160    }
161
162    public String getIntialBudgetAllocation() {
163        return intialBudgetAllocation;
164    }
165
166    public void setIntialBudgetAllocation(String intialBudgetAllocation) {
167        this.intialBudgetAllocation = intialBudgetAllocation;
168    }
169
170    public String getNetAllocation() {
171        return netAllocation;
172    }
173
174    public void setNetAllocation(String netAllocation) {
175        this.netAllocation = netAllocation;
176    }
177
178    public String getEncumbrances() {
179        return encumbrances;
180    }
181
182    public void setEncumbrances(String encumbrances) {
183        this.encumbrances = encumbrances;
184    }
185
186    public String getSumPaidInvoice() {
187        return sumPaidInvoice;
188    }
189
190    public void setSumPaidInvoice(String sumPaidInvoice) {
191        this.sumPaidInvoice = sumPaidInvoice;
192    }
193
194    public String getSumUnpaidInvoice() {
195        return sumUnpaidInvoice;
196    }
197
198    public void setSumUnpaidInvoice(String sumUnpaidInvoice) {
199        this.sumUnpaidInvoice = sumUnpaidInvoice;
200    }
201
202    public String getExpendedPercentage() {
203        return expendedPercentage;
204    }
205
206    public void setExpendedPercentage(String expendedPercentage) {
207        this.expendedPercentage = expendedPercentage;
208    }
209
210    public String getExpenEncumPercentage() {
211        return expenEncumPercentage;
212    }
213
214    public void setExpenEncumPercentage(String expenEncumPercentage) {
215        this.expenEncumPercentage = expenEncumPercentage;
216    }
217
218
219}