1 package org.kuali.ole.describe.bo;
2
3
4 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
5
6 import java.sql.Timestamp;
7
8
9
10
11
12 public class OleLocationIngestSummaryRecord extends PersistableBusinessObjectBase {
13
14 private String oleLocationSummaryId;
15 private Integer oleLocationTotCount;
16 private Integer oleLocationCreateCount;
17 private Integer oleLocationUpdateCount;
18 private Integer oleLocationRejectCount;
19 private Integer oleLocationFailedCount;
20 private String fileName;
21 private String olePrincipalName;
22 private Timestamp date;
23
24
25
26
27
28
29
30 public String getOleLocationSummaryId() {
31 return oleLocationSummaryId;
32 }
33
34
35
36
37
38
39 public void setOleLocationSummaryId(String oleLocationSummaryId) {
40 this.oleLocationSummaryId = oleLocationSummaryId;
41 }
42
43
44
45
46
47
48 public Integer getOleLocationRejectCount() {
49 if (this.oleLocationRejectCount == null)
50 return 0;
51 return oleLocationRejectCount;
52 }
53
54
55
56
57
58
59 public void setOleLocationRejectCount(Integer LocationRejectCount) {
60 this.oleLocationRejectCount = LocationRejectCount;
61 }
62
63
64
65
66
67
68 public Integer getOleLocationUpdateCount() {
69 if (this.oleLocationUpdateCount == null)
70 return 0;
71 return oleLocationUpdateCount;
72 }
73
74
75
76
77
78
79 public void setOleLocationUpdateCount(Integer LocationUpdateCount) {
80 this.oleLocationUpdateCount = LocationUpdateCount;
81 }
82
83
84
85
86
87
88 public Integer getOleLocationCreateCount() {
89 if (this.oleLocationCreateCount == null)
90 return 0;
91 return oleLocationCreateCount;
92 }
93
94
95
96
97
98 public void setOleLocationCreateCount(Integer LocationCreateCount) {
99 this.oleLocationCreateCount = LocationCreateCount;
100 }
101
102
103
104
105
106
107 public Integer getOleLocationTotCount() {
108 if (this.oleLocationTotCount == null)
109 return 0;
110 return oleLocationTotCount;
111 }
112
113
114
115
116
117
118 public void setOleLocationTotCount(Integer LocationTotCount) {
119 this.oleLocationTotCount = LocationTotCount;
120 }
121
122
123
124
125
126
127 public String getFileName() {
128 return fileName;
129 }
130
131
132
133
134
135
136 public void setFileName(String fileName) {
137 this.fileName = fileName;
138 }
139
140
141
142
143
144
145 public Integer getOleLocationFailedCount() {
146 if (this.oleLocationFailedCount == null)
147 return 0;
148 return oleLocationFailedCount;
149 }
150
151
152
153
154
155
156 public void setOleLocationFailedCount(Integer LocationFailedCount) {
157 this.oleLocationFailedCount = LocationFailedCount;
158 }
159
160 public Timestamp getDate() {
161 return date;
162 }
163
164 public void setDate(Timestamp date) {
165 this.date = date;
166 }
167
168 public String getOlePrincipalName() {
169 return olePrincipalName;
170 }
171
172 public void setOlePrincipalName(String olePrincipalName) {
173 this.olePrincipalName = olePrincipalName;
174 }
175 }