View Javadoc
1   /*
2    * The Kuali Financial System, a comprehensive financial management system for higher education.
3    * 
4    * Copyright 2005-2014 The Kuali Foundation
5    * 
6    * This program is free software: you can redistribute it and/or modify
7    * it under the terms of the GNU Affero General Public License as
8    * published by the Free Software Foundation, either version 3 of the
9    * License, or (at your option) any later version.
10   * 
11   * This program is distributed in the hope that it will be useful,
12   * but WITHOUT ANY WARRANTY; without even the implied warranty of
13   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   * GNU Affero General Public License for more details.
15   * 
16   * You should have received a copy of the GNU Affero General Public License
17   * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18   */
19  package org.kuali.kfs.module.ld.document.web.struts;
20  
21  import java.util.List;
22  
23  import org.kuali.rice.kns.web.struts.form.KualiForm;
24  import org.kuali.kfs.module.ld.businessobject.BenefitInquiry;
25  
26  public class FringeBenefitInquiryForm extends KualiForm {
27      
28      private List<BenefitInquiry> benefitInquiry;
29      private String chartOfAccountsCode;
30      private String amount;
31      private String payrollEndDateFiscalYear;
32      private String financialObjectCode;
33      private String accountNumber;
34      private String subAccountNumber;
35     
36      
37     
38      public List<BenefitInquiry> getBenefitInquiry() {
39          return benefitInquiry;
40      }
41      public void setBenefitInquiry(List<BenefitInquiry> benefitInquiry) {
42          this.benefitInquiry = benefitInquiry;
43      }
44      
45      public String getChartOfAccountsCode() {
46          return chartOfAccountsCode;
47      }
48      public void setChartOfAccountsCode(String chartOfAccountsCode) {
49          this.chartOfAccountsCode = chartOfAccountsCode;
50      }
51     
52      public String getPayrollEndDateFiscalYear() {
53          return payrollEndDateFiscalYear;
54      }
55      public void setPayrollEndDateFiscalYear(String  payrollEndDateFiscalYear) {
56          this.payrollEndDateFiscalYear = payrollEndDateFiscalYear;
57      }
58      public String getFinancialObjectCode() {
59          return financialObjectCode;
60      }
61      
62      public void setFinancialObjectCode(String financialObjectCode) {
63          this.financialObjectCode = financialObjectCode;
64      }
65      
66      public String getAmount() {
67          return amount;
68      }
69      public void setAmount(String amount) {
70          this.amount = amount;
71      }
72      public String getAccountNumber() {
73          return accountNumber;
74      }
75      public void setAccountNumber(String accountNumber) {
76          this.accountNumber = accountNumber;
77      }
78      public String getSubAccountNumber() {
79          return subAccountNumber;
80      }
81      public void setSubAccountNumber(String subAccountNumber) {
82          this.subAccountNumber = subAccountNumber;
83      }    
84      
85  }