001package org.kuali.ole.select.document; 002 003 004 005import org.kuali.rice.krad.bo.PersistableBusinessObjectBase; 006import java.sql.Timestamp; 007 008/** 009 * Created by chenchulakshmig on 12/28/14. 010 */ 011public class OLEEResourceSynchronizationGokbLog extends PersistableBusinessObjectBase{ 012 013 private String eResSynchronizationGokbLogId; 014 private String oleERSIdentifier; 015 private Integer eResUpdatedCount; 016 private Integer eHoldingsAddedCount; 017 private Integer eHoldingsUpdatedCount; 018 private Integer eHoldingsRetiredCount; 019 private Integer eHoldingsDeletedCount; 020 private Integer bibAddedCount; 021 private Integer vendorsAddedCount; 022 private Integer vendorsUpdatedCount; 023 private Integer platformsAddedCount; 024 private Integer platformsUpdatedCount; 025 private String userName; 026 private String status; 027 private String gokbconfig; 028 private Timestamp startTime; 029 private Timestamp endTime; 030 private Timestamp updatedDate; 031 032 public String geteResSynchronizationGokbLogId() { 033 return eResSynchronizationGokbLogId; 034 } 035 036 public void seteResSynchronizationGokbLogId(String eResSynchronizationGokbLogId) { 037 this.eResSynchronizationGokbLogId = eResSynchronizationGokbLogId; 038 } 039 040 public String getOleERSIdentifier() { 041 return oleERSIdentifier; 042 } 043 044 public void setOleERSIdentifier(String oleERSIdentifier) { 045 this.oleERSIdentifier = oleERSIdentifier; 046 } 047 048 public Integer geteResUpdatedCount() { 049 return eResUpdatedCount; 050 } 051 052 public void seteResUpdatedCount(Integer eResUpdatedCount) { 053 this.eResUpdatedCount = eResUpdatedCount; 054 } 055 056 public Integer geteHoldingsAddedCount() { 057 return eHoldingsAddedCount; 058 } 059 060 public void seteHoldingsAddedCount(Integer eHoldingsAddedCount) { 061 this.eHoldingsAddedCount = eHoldingsAddedCount; 062 } 063 064 public Integer geteHoldingsUpdatedCount() { 065 return eHoldingsUpdatedCount; 066 } 067 068 public void seteHoldingsUpdatedCount(Integer eHoldingsUpdatedCount) { 069 this.eHoldingsUpdatedCount = eHoldingsUpdatedCount; 070 } 071 072 public Integer geteHoldingsRetiredCount() { 073 return eHoldingsRetiredCount; 074 } 075 076 public void seteHoldingsRetiredCount(Integer eHoldingsRetiredCount) { 077 this.eHoldingsRetiredCount = eHoldingsRetiredCount; 078 } 079 080 public Integer geteHoldingsDeletedCount() { 081 return eHoldingsDeletedCount; 082 } 083 084 public void seteHoldingsDeletedCount(Integer eHoldingsDeletedCount) { 085 this.eHoldingsDeletedCount = eHoldingsDeletedCount; 086 } 087 088 public Integer getBibAddedCount() { 089 return bibAddedCount; 090 } 091 092 public void setBibAddedCount(Integer bibAddedCount) { 093 this.bibAddedCount = bibAddedCount; 094 } 095 096 public Integer getVendorsAddedCount() { 097 return vendorsAddedCount; 098 } 099 100 public void setVendorsAddedCount(Integer vendorsAddedCount) { 101 this.vendorsAddedCount = vendorsAddedCount; 102 } 103 104 public Integer getVendorsUpdatedCount() { 105 return vendorsUpdatedCount; 106 } 107 108 public void setVendorsUpdatedCount(Integer vendorsUpdatedCount) { 109 this.vendorsUpdatedCount = vendorsUpdatedCount; 110 } 111 112 public Integer getPlatformsAddedCount() { 113 return platformsAddedCount; 114 } 115 116 public void setPlatformsAddedCount(Integer platformsAddedCount) { 117 this.platformsAddedCount = platformsAddedCount; 118 } 119 120 public Integer getPlatformsUpdatedCount() { 121 return platformsUpdatedCount; 122 } 123 124 public void setPlatformsUpdatedCount(Integer platformsUpdatedCount) { 125 this.platformsUpdatedCount = platformsUpdatedCount; 126 } 127 128 public String getUserName() { 129 return userName; 130 } 131 132 public void setUserName(String userName) { 133 this.userName = userName; 134 } 135 136 public String getStatus() { 137 return status; 138 } 139 140 public void setStatus(String status) { 141 this.status = status; 142 } 143 144 public String getGokbconfig() { 145 return gokbconfig; 146 } 147 148 public void setGokbconfig(String gokbconfig) { 149 this.gokbconfig = gokbconfig; 150 } 151 152 public Timestamp getUpdatedDate() { 153 return updatedDate; 154 } 155 156 public void setUpdatedDate(Timestamp updatedDate) { 157 this.updatedDate = updatedDate; 158 } 159 160 public Timestamp getStartTime() { 161 return startTime; 162 } 163 164 public void setStartTime(Timestamp startTime) { 165 this.startTime = startTime; 166 } 167 168 public Timestamp getEndTime() { 169 return endTime; 170 } 171 172 public void setEndTime(Timestamp endTime) { 173 this.endTime = endTime; 174 } 175}