View Javadoc
1   /**
2    * Copyright 2004-2015 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.block.web;
17  
18  import java.util.ArrayList;
19  import java.util.List;
20  
21  import org.kuali.kpme.core.accrualcategory.AccrualCategoryBo;
22  import org.kuali.kpme.core.api.accrualcategory.AccrualCategory;
23  import org.kuali.kpme.core.web.KPMEForm;
24  import org.kuali.kpme.tklm.leave.block.LeaveBlockHistory;
25  
26  public class LeaveBlockDisplayForm extends KPMEForm {
27  
28  	private static final long serialVersionUID = 1438955879572170167L;
29  	
30  	private String targetName;
31  	private int year;
32  	private String navString;
33  	private List<AccrualCategory> accrualCategories = new ArrayList<AccrualCategory>();
34  	private List<LeaveBlockDisplay> leaveEntries;
35  	private List<LeaveBlockHistory> correctedLeaveEntries;
36  	private List<LeaveBlockHistory> inActiveLeaveEntries;
37  	
38  	public int getYear() {
39  		return year;
40  	}
41  
42  	public void setYear(int year) {
43  		this.year = year;
44  	}
45  
46  	public String getNavString() {
47  		return navString;
48  	}
49  
50  	public void setNavString(String navString) {
51  		this.navString = navString;
52  	}
53  	
54  	public List<AccrualCategory> getAccrualCategories() {
55  		return accrualCategories;
56  	}
57  
58  	public void setAccrualCategories(List<AccrualCategory> accrualCategories) {
59  		this.accrualCategories = accrualCategories;
60  	}
61  	
62  	public List<LeaveBlockDisplay> getLeaveEntries() {
63  		return leaveEntries;
64  	}
65  
66  	public void setLeaveEntries(List<LeaveBlockDisplay> leaveEntries) {
67  		this.leaveEntries = leaveEntries;
68  	}
69  	
70  	public List<LeaveBlockHistory> getCorrectedLeaveEntries() {
71  		return correctedLeaveEntries;
72  	}
73  
74  	public void setCorrectedLeaveEntries(List<LeaveBlockHistory> correctedLeaveEntries) {
75  		this.correctedLeaveEntries = correctedLeaveEntries;
76  	}
77  
78  	public List<LeaveBlockHistory> getInActiveLeaveEntries() {
79  		return inActiveLeaveEntries;
80  	}
81  
82  	public void setInActiveLeaveEntries(List<LeaveBlockHistory> inActiveLeaveEntries) {
83  		this.inActiveLeaveEntries = inActiveLeaveEntries;
84  	}
85  	
86  }