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