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