1 package org.kuali.ole.deliver.bo;
2
3
4 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
5
6 import java.sql.Timestamp;
7
8
9
10
11 public class OlePatronIngestSummaryRecord extends PersistableBusinessObjectBase {
12
13 private String olePatronSummaryId;
14 private Integer patronTotCount;
15 private Integer patronCreateCount;
16 private Integer patronUpdateCount;
17 private Integer patronRejectCount;
18 private Integer patronFailedCount;
19 private String fileName;
20 private String principalName;
21 private Timestamp createdDate;
22 private String failureRecords;
23
24
25 public String getFailureRecords() {
26 return failureRecords;
27 }
28
29 public void setFailureRecords(String failureRecords) {
30 this.failureRecords = failureRecords;
31 }
32
33
34
35
36
37
38 public String getOlePatronSummaryId() {
39 return olePatronSummaryId;
40 }
41
42
43
44
45
46
47 public void setOlePatronSummaryId(String olePatronSummaryId) {
48 this.olePatronSummaryId = olePatronSummaryId;
49 }
50
51
52
53
54
55
56 public Integer getPatronRejectCount() {
57 if (this.patronRejectCount == null)
58 return 0;
59 return patronRejectCount;
60 }
61
62
63
64
65
66
67 public void setPatronRejectCount(Integer patronRejectCount) {
68 this.patronRejectCount = patronRejectCount;
69 }
70
71
72
73
74
75
76 public Integer getPatronUpdateCount() {
77 if (this.patronUpdateCount == null)
78 return 0;
79 return patronUpdateCount;
80 }
81
82
83
84
85
86
87 public void setPatronUpdateCount(Integer patronUpdateCount) {
88 this.patronUpdateCount = patronUpdateCount;
89 }
90
91
92
93
94
95
96 public Integer getPatronCreateCount() {
97 if (this.patronCreateCount == null)
98 return 0;
99 return patronCreateCount;
100 }
101
102
103
104
105
106
107 public void setPatronCreateCount(Integer patronCreateCount) {
108 this.patronCreateCount = patronCreateCount;
109 }
110
111
112
113
114
115
116 public Integer getPatronTotCount() {
117 if (this.patronTotCount == null)
118 return 0;
119 return patronTotCount;
120 }
121
122
123
124
125
126
127 public void setPatronTotCount(Integer patronTotCount) {
128 this.patronTotCount = patronTotCount;
129 }
130
131
132
133
134
135
136 public String getFileName() {
137 return fileName;
138 }
139
140
141
142
143
144
145 public void setFileName(String fileName) {
146 this.fileName = fileName;
147 }
148
149
150
151
152
153
154 public Integer getPatronFailedCount() {
155 if (this.patronFailedCount == null)
156 return 0;
157 return patronFailedCount;
158 }
159
160
161
162
163
164
165 public void setPatronFailedCount(Integer patronFailedCount) {
166 this.patronFailedCount = patronFailedCount;
167 }
168
169
170
171
172
173
174 public String getPrincipalName() {
175 return principalName;
176 }
177
178
179
180
181
182
183 public void setPrincipalName(String principalName) {
184 this.principalName = principalName;
185 }
186
187
188
189
190
191
192 public Timestamp getCreatedDate() {
193 return createdDate;
194 }
195
196
197
198
199
200
201 public void setCreatedDate(Timestamp createdDate) {
202 this.createdDate = createdDate;
203 }
204 }