View Javadoc
1   package org.kuali.ole.deliver.bo;
2   
3   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4   
5   import java.util.Date;
6   
7   /**
8    * OlePatronBo provides OlePatronBo information through getter and setter.
9    */
10  public class OlePatronBo extends PersistableBusinessObjectBase {
11      private Integer olePatronId;
12      private String entityId;
13      private String barcode;
14      private String borrowerType;
15      private String activeIndicator;
16      private String generalBlock;
17      private String pagingPrivilege;
18      private String courtesyNotice;
19      private String deliveryPrivilege;
20      private Date expirationDate;
21      private String firstName;
22      private String lastName;
23      private String emailAddress;
24      private String phoneNumber;
25  
26      /**
27       * Gets the value of olePatronId property
28       *
29       * @return olePatronId
30       */
31      public Integer getOlePatronId() {
32          return olePatronId;
33      }
34  
35      /**
36       * Sets the value for olePatronId property
37       *
38       * @param OlePatronImplId
39       */
40      public void setOlePatronId(Integer OlePatronImplId) {
41          this.olePatronId = olePatronId;
42      }
43  
44      /**
45       * Gets the value of entityId property
46       *
47       * @return entityId
48       */
49      public String getEntityId() {
50          return entityId;
51      }
52  
53      /**
54       * Sets the value for entityId property
55       *
56       * @param entityId
57       */
58      public void setEntityId(String entityId) {
59          this.entityId = entityId;
60      }
61  
62      /**
63       * Gets the value of barcode property
64       *
65       * @return barcode
66       */
67      public String getBarcode() {
68          return barcode;
69      }
70  
71      /**
72       * Sets the value for barcode property
73       *
74       * @param barcode
75       */
76      public void setBarcode(String barcode) {
77          this.barcode = barcode;
78      }
79  
80      /**
81       * Gets the value of borrowerType property
82       *
83       * @return borrowerType
84       */
85      public String getBorrowerType() {
86          return borrowerType;
87      }
88  
89      /**
90       * Sets the value for borrowerType property
91       *
92       * @param borrowerType
93       */
94      public void setBorrowerType(String borrowerType) {
95          this.borrowerType = borrowerType;
96      }
97  
98      /**
99       * Gets the value of activeIndicator property
100      *
101      * @return activeIndicator
102      */
103     public String getActiveIndicator() {
104         return activeIndicator;
105     }
106 
107     /**
108      * Sets the value for activeIndicator property
109      *
110      * @param activeIndicator
111      */
112     public void setActiveIndicator(String activeIndicator) {
113         this.activeIndicator = activeIndicator;
114     }
115 
116     /**
117      * Gets the value of generalBlock property
118      *
119      * @return generalBlock
120      */
121     public String getGeneralBlock() {
122         return generalBlock;
123     }
124 
125     /**
126      * Sets the value for generalBlock property
127      *
128      * @param generalBlock
129      */
130     public void setGeneralBlock(String generalBlock) {
131         this.generalBlock = generalBlock;
132     }
133 
134     /**
135      * Gets the value of pagingPrivilege property
136      *
137      * @return pagingPrivilege
138      */
139     public String getPagingPrivilege() {
140         return pagingPrivilege;
141     }
142 
143     /**
144      * Sets the value for pagingPrivilege property
145      *
146      * @param pagingPrivilege
147      */
148     public void setPagingPrivilege(String pagingPrivilege) {
149         this.pagingPrivilege = pagingPrivilege;
150     }
151 
152     /**
153      * Gets the value of courtesyNotice property
154      *
155      * @return courtesyNotice
156      */
157     public String getCourtesyNotice() {
158         return courtesyNotice;
159     }
160 
161     /**
162      * Sets the value for courtesyNotice property
163      *
164      * @param courtesyNotice
165      */
166     public void setCourtesyNotice(String courtesyNotice) {
167         this.courtesyNotice = courtesyNotice;
168     }
169 
170     /**
171      * Gets the value of deliveryPrivilege property
172      *
173      * @return deliveryPrivilege
174      */
175     public String getDeliveryPrivilege() {
176         return deliveryPrivilege;
177     }
178 
179     /**
180      * Sets the value for deliveryPrivilege property
181      *
182      * @param deliveryPrivilege
183      */
184     public void setDeliveryPrivilege(String deliveryPrivilege) {
185         this.deliveryPrivilege = deliveryPrivilege;
186     }
187 
188     /**
189      * Gets the value of expirationDate of type Date
190      *
191      * @return expirationDate(Date)
192      */
193     public Date getExpirationDate() {
194         return expirationDate;
195     }
196 
197     /**
198      * Sets the value for expirationDate of type Date
199      *
200      * @param expirationDate(Date)
201      */
202     public void setExpirationDate(Date expirationDate) {
203         this.expirationDate = expirationDate;
204     }
205 
206     /**
207      * Gets the value of emailAddress property
208      *
209      * @return emailAddress
210      */
211     public String getEmailAddress() {
212         return emailAddress;
213     }
214 
215     /**
216      * Sets the value for emailAddress property
217      *
218      * @param emailAddress
219      */
220     public void setEmailAddress(String emailAddress) {
221         this.emailAddress = emailAddress;
222     }
223 
224     /**
225      * Gets the value of firstName property
226      *
227      * @return firstName
228      */
229     public String getFirstName() {
230         return firstName;
231     }
232 
233     /**
234      * Sets the value for firstName property
235      *
236      * @param firstName
237      */
238     public void setFirstName(String firstName) {
239         this.firstName = firstName;
240     }
241 
242     /**
243      * Gets the value of lastName property
244      *
245      * @return lastName
246      */
247     public String getLastName() {
248         return lastName;
249     }
250 
251     /**
252      * Sets the value for lastName property
253      *
254      * @param lastName
255      */
256     public void setLastName(String lastName) {
257         this.lastName = lastName;
258     }
259 
260     /**
261      * Gets the value of phoneNumber property
262      *
263      * @return phoneNumber
264      */
265     public String getPhoneNumber() {
266         return phoneNumber;
267     }
268 
269     /**
270      * Sets the value for phoneNumber property
271      *
272      * @param phoneNumber
273      */
274     public void setPhoneNumber(String phoneNumber) {
275         this.phoneNumber = phoneNumber;
276     }
277 }