View Javadoc

1   /**
2    * Copyright 2004-2013 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.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/ecl2.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.kpme.tklm.leave.request.approval.web;
17  
18  import java.util.List;
19  
20  import org.kuali.kpme.tklm.common.ApprovalForm;
21  
22  public class LeaveRequestApprovalActionForm extends ApprovalForm {
23  	
24  	private static final long serialVersionUID = 1L;
25  	
26  	private List<LeaveRequestApprovalEmployeeRow> employeeRows;
27  	private String approveList;
28  	private String disapproveList;
29  	private String deferList;
30  	private String principalId;     
31  	
32  	public List<LeaveRequestApprovalEmployeeRow> getEmployeeRows() {
33  		return employeeRows;
34  	}
35  	public void setEmployeeRows(List<LeaveRequestApprovalEmployeeRow> employeeRows) {
36  		this.employeeRows = employeeRows;
37  	}
38  	public String getApproveList() {
39  		return approveList;
40  	}
41  	public void setApproveList(String approveList) {
42  		this.approveList = approveList;
43  	}
44  	public String getDisapproveList() {
45  		return disapproveList;
46  	}
47  	public void setDisapproveList(String disapproveList) {
48  		this.disapproveList = disapproveList;
49  	}
50  	public String getDeferList() {
51  		return deferList;
52  	}
53  	public void setDeferList(String deferList) {
54  		this.deferList = deferList;
55  	}
56  	public String getPrincipalId() {
57  		return principalId;
58  	}
59  	public void setPrincipalId(String principalId) {
60  		this.principalId = principalId;
61  	}
62  	
63  }