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