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  import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
22  
23  import java.io.Serializable;
24  
25  
26  public class OleFundLookup extends PersistableBusinessObjectBase implements Serializable {
27  
28      private String chartOfAccountsCode;
29      private String accountNumber;
30      private String objectCode;
31      private String organizationCode;
32      private String keyword;
33      private Integer universityFiscalYear;
34      private boolean active;
35      private Chart chart;
36      private Account account;
37      private ObjectCode financialObject;
38      private String accountName;
39      private String intialFundBalance;
40      private String cashBalance;
41      private String freeBalance;
42      private String intialBudgetAllocation;
43      private String netAllocation;
44      private String encumbrances;
45      private String sumPaidInvoice;
46      private String sumUnpaidInvoice;
47      private String expendedPercentage;
48      private String expenEncumPercentage;
49  
50      public String getChartOfAccountsCode() {
51          return chartOfAccountsCode;
52      }
53  
54      public void setChartOfAccountsCode(String chartOfAccountsCode) {
55          this.chartOfAccountsCode = chartOfAccountsCode;
56      }
57  
58      public String getAccountNumber() {
59          return accountNumber;
60      }
61  
62      public void setAccountNumber(String accountNumber) {
63          this.accountNumber = accountNumber;
64      }
65  
66      public String getObjectCode() {
67          return objectCode;
68      }
69  
70      public void setObjectCode(String objectCode) {
71          this.objectCode = objectCode;
72      }
73  
74      public String getOrganizationCode() {
75          return organizationCode;
76      }
77  
78      public void setOrganizationCode(String organizationCode) {
79          this.organizationCode = organizationCode;
80      }
81  
82      public String getKeyword() {
83          return keyword;
84      }
85  
86      public void setKeyword(String keyword) {
87          this.keyword = keyword;
88      }
89  
90      public Integer getUniversityFiscalYear() {
91          return universityFiscalYear;
92      }
93  
94      public void setUniversityFiscalYear(Integer universityFiscalYear) {
95          this.universityFiscalYear = universityFiscalYear;
96      }
97  
98      public boolean isActive() {
99          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 }