View Javadoc

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