1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.hr.time.approval.web;
17
18 import java.util.ArrayList;
19 import java.util.List;
20
21 import org.kuali.hr.time.base.web.ApprovalForm;
22
23 public class TimeApprovalActionForm extends ApprovalForm {
24
25 private static final long serialVersionUID = 339670908525224389L;
26
27 private List<String> payCalendarLabels = new ArrayList<String>();
28 private List<ApprovalTimeSummaryRow> approvalRows;
29
30 public List<String> getPayCalendarLabels() {
31 return payCalendarLabels;
32 }
33 public void setPayCalendarLabels(List<String> payCalendarLabels) {
34 this.payCalendarLabels = payCalendarLabels;
35 }
36 public List<ApprovalTimeSummaryRow> getApprovalRows() {
37 return approvalRows;
38 }
39 public void setApprovalRows(List<ApprovalTimeSummaryRow> approvalRows) {
40 this.approvalRows = approvalRows;
41 }
42
43
44
45 }