1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.hr.time.batch;
17
18 public class BatchJobEntry {
19 private Long tkBatchJobEntryId;
20 private Long tkBatchJobId;
21 private String documentId;
22 private String principalId;
23 private String batchJobEntryStatus;
24 private String batchJobException;
25 private String ipAddress;
26 private String batchJobName;
27 private String hrPyCalendarEntryId;
28 private String clockLogId;
29
30 public Long getTkBatchJobEntryId() {
31 return tkBatchJobEntryId;
32 }
33 public void setTkBatchJobEntryId(Long tkBatchJobEntryId) {
34 this.tkBatchJobEntryId = tkBatchJobEntryId;
35 }
36 public Long getTkBatchJobId() {
37 return tkBatchJobId;
38 }
39 public void setTkBatchJobId(Long tkBatchJobId) {
40 this.tkBatchJobId = tkBatchJobId;
41 }
42 public String getDocumentId() {
43 return documentId;
44 }
45 public void setDocumentId(String documentId) {
46 this.documentId = documentId;
47 }
48 public String getPrincipalId() {
49 return principalId;
50 }
51 public void setPrincipalId(String principalId) {
52 this.principalId = principalId;
53 }
54 public String getBatchJobEntryStatus() {
55 return batchJobEntryStatus;
56 }
57 public void setBatchJobEntryStatus(String batchJobEntryStatus) {
58 this.batchJobEntryStatus = batchJobEntryStatus;
59 }
60 public String getBatchJobException() {
61 return batchJobException;
62 }
63 public void setBatchJobException(String batchJobException) {
64 this.batchJobException = batchJobException;
65 }
66 public String getIpAddress() {
67 return ipAddress;
68 }
69 public void setIpAddress(String ipAddress) {
70 this.ipAddress = ipAddress;
71 }
72 public String getBatchJobName() {
73 return batchJobName;
74 }
75 public void setBatchJobName(String batchJobName) {
76 this.batchJobName = batchJobName;
77 }
78 public void setHrPyCalendarEntryId(String hrPyCalendarEntryId) {
79 this.hrPyCalendarEntryId = hrPyCalendarEntryId;
80 }
81 public String getHrPyCalendarEntryId() {
82 return hrPyCalendarEntryId;
83 }
84 public void setClockLogId(String clockLogId) {
85 this.clockLogId = clockLogId;
86 }
87 public String getClockLogId() {
88 return clockLogId;
89 }
90 }