View Javadoc

1   /**
2    * Copyright 2004-2013 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.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  }