001package org.kuali.ole.deliver.bo; 002 003import org.kuali.rice.krad.bo.PersistableBusinessObjectBase; 004 005import java.util.Date; 006 007/** 008 * OlePatronBo provides OlePatronBo information through getter and setter. 009 */ 010public class OlePatronBo extends PersistableBusinessObjectBase { 011 private Integer olePatronId; 012 private String entityId; 013 private String barcode; 014 private String borrowerType; 015 private String activeIndicator; 016 private String generalBlock; 017 private String pagingPrivilege; 018 private String courtesyNotice; 019 private String deliveryPrivilege; 020 private Date expirationDate; 021 private String firstName; 022 private String lastName; 023 private String emailAddress; 024 private String phoneNumber; 025 026 /** 027 * Gets the value of olePatronId property 028 * 029 * @return olePatronId 030 */ 031 public Integer getOlePatronId() { 032 return olePatronId; 033 } 034 035 /** 036 * Sets the value for olePatronId property 037 * 038 * @param OlePatronImplId 039 */ 040 public void setOlePatronId(Integer OlePatronImplId) { 041 this.olePatronId = olePatronId; 042 } 043 044 /** 045 * Gets the value of entityId property 046 * 047 * @return entityId 048 */ 049 public String getEntityId() { 050 return entityId; 051 } 052 053 /** 054 * Sets the value for entityId property 055 * 056 * @param entityId 057 */ 058 public void setEntityId(String entityId) { 059 this.entityId = entityId; 060 } 061 062 /** 063 * Gets the value of barcode property 064 * 065 * @return barcode 066 */ 067 public String getBarcode() { 068 return barcode; 069 } 070 071 /** 072 * Sets the value for barcode property 073 * 074 * @param barcode 075 */ 076 public void setBarcode(String barcode) { 077 this.barcode = barcode; 078 } 079 080 /** 081 * Gets the value of borrowerType property 082 * 083 * @return borrowerType 084 */ 085 public String getBorrowerType() { 086 return borrowerType; 087 } 088 089 /** 090 * Sets the value for borrowerType property 091 * 092 * @param borrowerType 093 */ 094 public void setBorrowerType(String borrowerType) { 095 this.borrowerType = borrowerType; 096 } 097 098 /** 099 * 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}