1 package org.kuali.ole.select.document;
2
3
4
5 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
6 import java.sql.Timestamp;
7
8
9
10
11 public class OLEEResourceSynchronizationGokbLog extends PersistableBusinessObjectBase{
12
13 private String eResSynchronizationGokbLogId;
14 private String oleERSIdentifier;
15 private Integer eResUpdatedCount;
16 private Integer eHoldingsAddedCount;
17 private Integer eHoldingsUpdatedCount;
18 private Integer eHoldingsRetiredCount;
19 private Integer eHoldingsDeletedCount;
20 private Integer bibAddedCount;
21 private Integer vendorsAddedCount;
22 private Integer vendorsUpdatedCount;
23 private Integer platformsAddedCount;
24 private Integer platformsUpdatedCount;
25 private String userName;
26 private String status;
27 private String gokbconfig;
28 private Timestamp startTime;
29 private Timestamp endTime;
30 private Timestamp updatedDate;
31
32 public String geteResSynchronizationGokbLogId() {
33 return eResSynchronizationGokbLogId;
34 }
35
36 public void seteResSynchronizationGokbLogId(String eResSynchronizationGokbLogId) {
37 this.eResSynchronizationGokbLogId = eResSynchronizationGokbLogId;
38 }
39
40 public String getOleERSIdentifier() {
41 return oleERSIdentifier;
42 }
43
44 public void setOleERSIdentifier(String oleERSIdentifier) {
45 this.oleERSIdentifier = oleERSIdentifier;
46 }
47
48 public Integer geteResUpdatedCount() {
49 return eResUpdatedCount;
50 }
51
52 public void seteResUpdatedCount(Integer eResUpdatedCount) {
53 this.eResUpdatedCount = eResUpdatedCount;
54 }
55
56 public Integer geteHoldingsAddedCount() {
57 return eHoldingsAddedCount;
58 }
59
60 public void seteHoldingsAddedCount(Integer eHoldingsAddedCount) {
61 this.eHoldingsAddedCount = eHoldingsAddedCount;
62 }
63
64 public Integer geteHoldingsUpdatedCount() {
65 return eHoldingsUpdatedCount;
66 }
67
68 public void seteHoldingsUpdatedCount(Integer eHoldingsUpdatedCount) {
69 this.eHoldingsUpdatedCount = eHoldingsUpdatedCount;
70 }
71
72 public Integer geteHoldingsRetiredCount() {
73 return eHoldingsRetiredCount;
74 }
75
76 public void seteHoldingsRetiredCount(Integer eHoldingsRetiredCount) {
77 this.eHoldingsRetiredCount = eHoldingsRetiredCount;
78 }
79
80 public Integer geteHoldingsDeletedCount() {
81 return eHoldingsDeletedCount;
82 }
83
84 public void seteHoldingsDeletedCount(Integer eHoldingsDeletedCount) {
85 this.eHoldingsDeletedCount = eHoldingsDeletedCount;
86 }
87
88 public Integer getBibAddedCount() {
89 return bibAddedCount;
90 }
91
92 public void setBibAddedCount(Integer bibAddedCount) {
93 this.bibAddedCount = bibAddedCount;
94 }
95
96 public Integer getVendorsAddedCount() {
97 return vendorsAddedCount;
98 }
99
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 }