View Javadoc

1   package org.kuali.ole.location.bo;
2   
3   
4   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
5   
6   /**
7    * The OleLocationIngestSummaryRecord is a BO class that defines the ingest summary fields with getters and setters which
8    * is used for interacting the summary data with the persistence layer in OLE.
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       * Gets the oleLocationSummaryId string value from this OleLocationIngestSummaryRecord class
22       * @return oleLocationSummaryId
23       */
24      public String getOleLocationSummaryId() {
25          return oleLocationSummaryId;
26      }
27  
28      /**
29       * Sets the oleLocationSummaryId string value inside this OleLocationIngestSummaryRecord class
30       * @param oleLocationSummaryId
31       */
32      public void setOleLocationSummaryId(String oleLocationSummaryId) {
33          this.oleLocationSummaryId = oleLocationSummaryId;
34      }
35  
36      /**
37       * Gets the oleLocationRejectCount integer value from this OleLocationIngestSummaryRecord class
38       * @return oleLocationRejectCount
39       */
40      public Integer getOleLocationRejectCount() {
41          if(this.oleLocationRejectCount == null)
42             return 0;
43          return oleLocationRejectCount;
44      }
45  
46      /**
47       * Sets the oleLocationRejectCount integer value inside this OleLocationIngestSummaryRecord class
48       * @param LocationRejectCount
49       */
50      public void setOleLocationRejectCount(Integer LocationRejectCount) {
51          this.oleLocationRejectCount = LocationRejectCount;
52      }
53  
54      /**
55       * Gets the oleLocationUpdateCount integer value from this OleLocationIngestSummaryRecord class
56       * @return oleLocationUpdateCount
57       */
58      public Integer getOleLocationUpdateCount() {
59          if(this.oleLocationUpdateCount == null)
60              return 0;
61          return oleLocationUpdateCount;
62      }
63  
64      /**
65       * Sets the oleLocationUpdateCount integer value inside this OleLocationIngestSummaryRecord class
66       * @param LocationUpdateCount
67       */
68      public void setOleLocationUpdateCount(Integer LocationUpdateCount) {
69          this.oleLocationUpdateCount = LocationUpdateCount;
70      }
71  
72      /**
73       * Gets the oleLocationCreateCount integer value from this OleLocationIngestSummaryRecord class
74       * @return oleLocationCreateCount
75       */
76      public Integer getOleLocationCreateCount() {
77          if(this.oleLocationCreateCount == null)
78              return 0;
79          return oleLocationCreateCount;
80      }
81  
82      /*
83       * Sets the oleLocationCreateCount integer value inside this OleLocationIngestSummaryRecord class
84       * @param LocationCreateCount
85       */
86      public void setOleLocationCreateCount(Integer LocationCreateCount) {
87          this.oleLocationCreateCount = LocationCreateCount;
88      }
89  
90      /**
91       * Gets the oleLocationTotCount integer value from this OleLocationIngestSummaryRecord class
92       * @return oleLocationTotCount
93       */
94      public Integer getOleLocationTotCount() {
95          if(this.oleLocationTotCount == null)
96              return 0;
97          return oleLocationTotCount;
98      }
99  
100     /**
101      * Sets the oleLocationTotCount integer value inside this OleLocationIngestSummaryRecord class
102      * @param LocationTotCount
103      */
104     public void setOleLocationTotCount(Integer LocationTotCount) {
105         this.oleLocationTotCount = LocationTotCount;
106     }
107 
108     /**
109      * Gets the fileName string value from this OleLocationIngestSummaryRecord class
110      * @return fileName
111      */
112     public String getFileName() {
113         return fileName;
114     }
115 
116     /**
117      * Sets the fileName string value inside this OleLocationIngestSummaryRecord class
118      * @param fileName
119      */
120     public void setFileName(String fileName) {
121         this.fileName = fileName;
122     }
123 
124     /**
125      * Gets the oleLocationFailedCount integer value from this OleLocationIngestSummaryRecord class
126      * @return oleLocationFailedCount
127      */
128     public Integer getOleLocationFailedCount() {
129         if(this.oleLocationFailedCount == null)
130             return 0;
131         return oleLocationFailedCount;
132     }
133 
134     /**
135      * Sets the oleLocationFailedCount integer value inside this OleLocationIngestSummaryRecord class
136      * @param LocationFailedCount
137      */
138     public void setOleLocationFailedCount(Integer LocationFailedCount) {
139         this.oleLocationFailedCount = LocationFailedCount;
140     }
141 
142 
143 }