1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.hr.time.calendar.web;
17
18 import org.kuali.hr.time.base.web.TkForm;
19
20 public class CalendarEntryActionForm extends TkForm {
21
22 private static final long serialVersionUID = 385904747462568474L;
23
24 private Long hrPyCalendarEntryId;
25 private Integer noOfPeriods;
26 private String calendarEntryPeriodType;
27 private String message;
28
29 public Long getHrPyCalendarEntryId() {
30 return hrPyCalendarEntryId;
31 }
32
33 public void setHrPyCalendarEntryId(Long hrPyCalendarEntryId) {
34 this.hrPyCalendarEntryId = hrPyCalendarEntryId;
35 }
36
37 public Integer getNoOfPeriods() {
38 return noOfPeriods;
39 }
40
41 public void setNoOfPeriods(Integer noOfPeriods) {
42 this.noOfPeriods = noOfPeriods;
43 }
44
45 public String getCalendarEntryPeriodType() {
46 return calendarEntryPeriodType;
47 }
48
49 public void setCalendarEntryPeriodType(String calendarEntryPeriodType) {
50 this.calendarEntryPeriodType = calendarEntryPeriodType;
51 }
52
53 public String getMessage() {
54 return message;
55 }
56
57 public void setMessage(String message) {
58 this.message = message;
59 }
60
61 }