View Javadoc
1   package org.kuali.ole.deliver.bo;
2   
3   
4   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
5   
6   import java.sql.Timestamp;
7   
8   /**
9    * OlePatronIngestSummaryRecord provides OlePatronIngestSummaryRecord information through getter and setter.
10   */
11  public class OlePatronIngestSummaryRecord extends PersistableBusinessObjectBase {
12  
13      private String olePatronSummaryId;
14      private Integer patronTotCount;
15      private Integer patronCreateCount;
16      private Integer patronUpdateCount;
17      private Integer patronRejectCount;
18      private Integer patronFailedCount;
19      private String fileName;
20      private String principalName;
21      private Timestamp createdDate;
22      private String failureRecords;
23  
24  
25      public String getFailureRecords() {
26          return failureRecords;
27      }
28  
29      public void setFailureRecords(String failureRecords) {
30          this.failureRecords = failureRecords;
31      }
32  
33      /**
34       * Gets the value of olePatronSummaryId property
35       *
36       * @return olePatronSummaryId
37       */
38      public String getOlePatronSummaryId() {
39          return olePatronSummaryId;
40      }
41  
42      /**
43       * Sets the value for olePatronSummaryId property
44       *
45       * @param olePatronSummaryId
46       */
47      public void setOlePatronSummaryId(String olePatronSummaryId) {
48          this.olePatronSummaryId = olePatronSummaryId;
49      }
50  
51      /**
52       * Gets the value of patronRejectCount property
53       *
54       * @return patronRejectCount
55       */
56      public Integer getPatronRejectCount() {
57          if (this.patronRejectCount == null)
58              return 0;
59          return patronRejectCount;
60      }
61  
62      /**
63       * Sets the value for patronRejectCount property
64       *
65       * @param patronRejectCount
66       */
67      public void setPatronRejectCount(Integer patronRejectCount) {
68          this.patronRejectCount = patronRejectCount;
69      }
70  
71      /**
72       * Gets the value of patronUpdateCount property
73       *
74       * @return patronUpdateCount
75       */
76      public Integer getPatronUpdateCount() {
77          if (this.patronUpdateCount == null)
78              return 0;
79          return patronUpdateCount;
80      }
81  
82      /**
83       * Sets the value for patronUpdateCount property
84       *
85       * @param patronUpdateCount
86       */
87      public void setPatronUpdateCount(Integer patronUpdateCount) {
88          this.patronUpdateCount = patronUpdateCount;
89      }
90  
91      /**
92       * Gets the value of patronCreateCount property
93       *
94       * @return patronCreateCount
95       */
96      public Integer getPatronCreateCount() {
97          if (this.patronCreateCount == null)
98              return 0;
99          return patronCreateCount;
100     }
101 
102     /**
103      * Sets the value for patronCreateCount property
104      *
105      * @param patronCreateCount
106      */
107     public void setPatronCreateCount(Integer patronCreateCount) {
108         this.patronCreateCount = patronCreateCount;
109     }
110 
111     /**
112      * Gets the value of patronTotCount property
113      *
114      * @return patronTotCount
115      */
116     public Integer getPatronTotCount() {
117         if (this.patronTotCount == null)
118             return 0;
119         return patronTotCount;
120     }
121 
122     /**
123      * Sets the value for patronTotCount property
124      *
125      * @param patronTotCount
126      */
127     public void setPatronTotCount(Integer patronTotCount) {
128         this.patronTotCount = patronTotCount;
129     }
130 
131     /**
132      * Gets the value of fileName property
133      *
134      * @return fileName
135      */
136     public String getFileName() {
137         return fileName;
138     }
139 
140     /**
141      * Sets the value for fileName property
142      *
143      * @param fileName
144      */
145     public void setFileName(String fileName) {
146         this.fileName = fileName;
147     }
148 
149     /**
150      * Gets the value of patronFailedCount property
151      *
152      * @return patronFailedCount
153      */
154     public Integer getPatronFailedCount() {
155         if (this.patronFailedCount == null)
156             return 0;
157         return patronFailedCount;
158     }
159 
160     /**
161      * Sets the value for patronFailedCount property
162      *
163      * @param patronFailedCount
164      */
165     public void setPatronFailedCount(Integer patronFailedCount) {
166         this.patronFailedCount = patronFailedCount;
167     }
168 
169     /**
170      * Gets the value of principalName property
171      *
172      * @return principalName
173      */
174     public String getPrincipalName() {
175         return principalName;
176     }
177 
178     /**
179      * Sets the value for principalName property
180      *
181      * @param principalName
182      */
183     public void setPrincipalName(String principalName) {
184         this.principalName = principalName;
185     }
186 
187     /**
188      * Gets the value of createdDate property
189      *
190      * @return createdDate
191      */
192     public Timestamp getCreatedDate() {
193         return createdDate;
194     }
195 
196     /**
197      * Sets the value for createdDate property
198      *
199      * @param createdDate
200      */
201     public void setCreatedDate(Timestamp createdDate) {
202         this.createdDate = createdDate;
203     }
204 }