View Javadoc
1   /**
2    * Copyright 2004-2014 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.core.calendar.entry.CalendarEntryBo;
21  import org.kuali.kpme.tklm.common.ApprovalForm;
22  import org.kuali.kpme.tklm.leave.calendar.LeaveRequestCalendar;
23  
24  public class LeaveRequestApprovalActionForm extends ApprovalForm {
25  	
26  	private static final long serialVersionUID = 1L;
27  	
28  	private String principalId;
29  	private CalendarEntryBo calendarEntry;
30  	private LeaveRequestCalendar leaveRequestCalendar;
31  	private String prevDocumentId;
32  	private String nextDocumentId;
33  	private String hrCalendarEntryId;
34      private String prevHrCalendarEntryId;
35      private String nextHrCalendarEntryId;
36      private String actionList;
37      private String action;
38      private String leaveRequestString;
39      private String selectedCalendarType;
40      private String beginDateString;
41      private String endDateString;
42      private String navigationAction;
43      private String reason;
44      private List<String> principalIds;
45      private String selectedPrincipal;
46      
47  	public String getSelectedPrincipal() {
48  		return selectedPrincipal;
49  	}
50  	public void setSelectedPrincipal(String selectedPrincipal) {
51  		this.selectedPrincipal = selectedPrincipal;
52  	}
53  	public String getReason() {
54  		return reason;
55  	}
56  	public void setReason(String reason) {
57  		this.reason = reason;
58  	}
59  	public String getNavigationAction() {
60  		return navigationAction;
61  	}
62  	public void setNavigationAction(String navigationAction) {
63  		this.navigationAction = navigationAction;
64  	}
65  	public String getBeginDateString() {
66  		return beginDateString;
67  	}
68  	public void setBeginDateString(String beginDateString) {
69  		this.beginDateString = beginDateString;
70  	}
71  	public String getEndDateString() {
72  		return endDateString;
73  	}
74  	public void setEndDateString(String endDateString) {
75  		this.endDateString = endDateString;
76  	}
77  	public String getSelectedCalendarType() {
78  		return selectedCalendarType;
79  	}
80  	public void setSelectedCalendarType(String selectedCalendarType) {
81  		this.selectedCalendarType = selectedCalendarType;
82  	}
83  	public String getPrincipalId() {
84  		return principalId;
85  	}
86  	public void setPrincipalId(String principalId) {
87  		this.principalId = principalId;
88  	}
89  	public CalendarEntryBo getCalendarEntry() {
90  		return calendarEntry;
91  	}
92  	public void setCalendarEntry(CalendarEntryBo calendarEntry) {
93  		this.calendarEntry = calendarEntry;
94  	}
95  	public LeaveRequestCalendar getLeaveRequestCalendar() {
96  		return leaveRequestCalendar;
97  	}
98  	public void setLeaveRequestCalendar(LeaveRequestCalendar leaveRequestCalendar) {
99  		this.leaveRequestCalendar = leaveRequestCalendar;
100 	}
101 	public String getPrevDocumentId() {
102 		return prevDocumentId;
103 	}
104 	public void setPrevDocumentId(String prevDocumentId) {
105 		this.prevDocumentId = prevDocumentId;
106 	}
107 	public String getNextDocumentId() {
108 		return nextDocumentId;
109 	}
110 	public void setNextDocumentId(String nextDocumentId) {
111 		this.nextDocumentId = nextDocumentId;
112 	}
113 	public String getPrevHrCalendarEntryId() {
114 		return prevHrCalendarEntryId;
115 	}
116 	public void setPrevHrCalendarEntryId(String prevHrCalendarEntryId) {
117 		this.prevHrCalendarEntryId = prevHrCalendarEntryId;
118 	}
119 	public String getNextHrCalendarEntryId() {
120 		return nextHrCalendarEntryId;
121 	}
122 	public void setNextHrCalendarEntryId(String nextHrCalendarEntryId) {
123 		this.nextHrCalendarEntryId = nextHrCalendarEntryId;
124 	}
125 	public String getHrCalendarEntryId() {
126 		return hrCalendarEntryId;
127 	}
128 	public void setHrCalendarEntryId(String hrCalendarEntryId) {
129 		this.hrCalendarEntryId = hrCalendarEntryId;
130 	}
131 	public String getActionList() {
132 		return actionList;
133 	}
134 	public void setActionList(String actionList) {
135 		this.actionList = actionList;
136 	}
137 	public String getAction() {
138 		return action;
139 	}
140 	public void setAction(String action) {
141 		this.action = action;
142 	}
143 	public String getLeaveRequestString() {
144 		return leaveRequestString;
145 	}
146 	public void setLeaveRequestString(String leaveRequestString) {
147 		this.leaveRequestString = leaveRequestString;
148 	}
149 	public List<String> getPrincipalIds() {
150 		return principalIds;
151 	}
152 	public void setPrincipalIds(List<String> principalIds) {
153 		this.principalIds = principalIds;
154 	}
155 }