001 /** 002 * Copyright 2004-2012 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 package org.kuali.hr.time.batch; 017 018 public class BatchJobEntry { 019 private Long tkBatchJobEntryId; 020 private Long tkBatchJobId; 021 private String documentId; 022 private String principalId; 023 private String batchJobEntryStatus; 024 private String batchJobException; 025 private String ipAddress; 026 private String batchJobName; 027 private String hrPyCalendarEntryId; 028 private String clockLogId; 029 030 public Long getTkBatchJobEntryId() { 031 return tkBatchJobEntryId; 032 } 033 public void setTkBatchJobEntryId(Long tkBatchJobEntryId) { 034 this.tkBatchJobEntryId = tkBatchJobEntryId; 035 } 036 public Long getTkBatchJobId() { 037 return tkBatchJobId; 038 } 039 public void setTkBatchJobId(Long tkBatchJobId) { 040 this.tkBatchJobId = tkBatchJobId; 041 } 042 public String getDocumentId() { 043 return documentId; 044 } 045 public void setDocumentId(String documentId) { 046 this.documentId = documentId; 047 } 048 public String getPrincipalId() { 049 return principalId; 050 } 051 public void setPrincipalId(String principalId) { 052 this.principalId = principalId; 053 } 054 public String getBatchJobEntryStatus() { 055 return batchJobEntryStatus; 056 } 057 public void setBatchJobEntryStatus(String batchJobEntryStatus) { 058 this.batchJobEntryStatus = batchJobEntryStatus; 059 } 060 public String getBatchJobException() { 061 return batchJobException; 062 } 063 public void setBatchJobException(String batchJobException) { 064 this.batchJobException = batchJobException; 065 } 066 public String getIpAddress() { 067 return ipAddress; 068 } 069 public void setIpAddress(String ipAddress) { 070 this.ipAddress = ipAddress; 071 } 072 public String getBatchJobName() { 073 return batchJobName; 074 } 075 public void setBatchJobName(String batchJobName) { 076 this.batchJobName = batchJobName; 077 } 078 public void setHrPyCalendarEntryId(String hrPyCalendarEntryId) { 079 this.hrPyCalendarEntryId = hrPyCalendarEntryId; 080 } 081 public String getHrPyCalendarEntryId() { 082 return hrPyCalendarEntryId; 083 } 084 public void setClockLogId(String clockLogId) { 085 this.clockLogId = clockLogId; 086 } 087 public String getClockLogId() { 088 return clockLogId; 089 } 090 }