1 package org.kuali.ole.location.bo;
2
3
4 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
5
6
7
8
9
10
11
12
13 public class OleLocationIngestSummaryRecord extends PersistableBusinessObjectBase {
14
15 private String oleLocationSummaryId;
16 private Integer oleLocationTotCount;
17 private Integer oleLocationCreateCount;
18 private Integer oleLocationUpdateCount;
19 private Integer oleLocationRejectCount;
20 private Integer oleLocationFailedCount;
21 private String fileName;
22
23 public String getOleLocationSummaryId() {
24 return oleLocationSummaryId;
25 }
26
27 public void setOleLocationSummaryId(String oleLocationSummaryId) {
28 this.oleLocationSummaryId = oleLocationSummaryId;
29 }
30
31 public Integer getOleLocationRejectCount() {
32 if(this.oleLocationRejectCount == null)
33 return 0;
34 return oleLocationRejectCount;
35 }
36
37 public void setOleLocationRejectCount(Integer LocationRejectCount) {
38 this.oleLocationRejectCount = LocationRejectCount;
39 }
40
41 public Integer getOleLocationUpdateCount() {
42 if(this.oleLocationUpdateCount == null)
43 return 0;
44 return oleLocationUpdateCount;
45 }
46
47 public void setOleLocationUpdateCount(Integer LocationUpdateCount) {
48 this.oleLocationUpdateCount = LocationUpdateCount;
49 }
50
51 public Integer getOleLocationCreateCount() {
52 if(this.oleLocationCreateCount == null)
53 return 0;
54 return oleLocationCreateCount;
55 }
56
57 public void setOleLocationCreateCount(Integer LocationCreateCount) {
58 this.oleLocationCreateCount = LocationCreateCount;
59 }
60
61 public Integer getOleLocationTotCount() {
62 if(this.oleLocationTotCount == null)
63 return 0;
64 return oleLocationTotCount;
65 }
66
67 public void setOleLocationTotCount(Integer LocationTotCount) {
68 this.oleLocationTotCount = LocationTotCount;
69 }
70
71 public String getFileName() {
72 return fileName;
73 }
74
75 public void setFileName(String fileName) {
76 this.fileName = fileName;
77 }
78
79 public Integer getOleLocationFailedCount() {
80 if(this.oleLocationFailedCount == null)
81 return 0;
82 return oleLocationFailedCount;
83 }
84
85 public void setOleLocationFailedCount(Integer LocationFailedCount) {
86 this.oleLocationFailedCount = LocationFailedCount;
87 }
88
89
90 }