1 2 package org.kuali.ole.select.testing; 3 4 import javax.xml.bind.annotation.XmlAccessType; 5 import javax.xml.bind.annotation.XmlAccessorType; 6 import javax.xml.bind.annotation.XmlType; 7 8 9 /** 10 * <p>Java class for createPreOrderForCitation complex type. 11 * <p/> 12 * <p>The following schema fragment specifies the expected content contained within this class. 13 * <p/> 14 * <pre> 15 * <complexType name="createPreOrderForCitation"> 16 * <complexContent> 17 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 18 * <sequence> 19 * <element name="citationString" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 20 * <element name="routeRequesterReceipt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 21 * <element name="requestorsNote" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 22 * <element name="requestorsFirstName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 23 * <element name="requestorsLastName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 24 * <element name="requestorsAddress1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 25 * <element name="requestorsAddress2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 26 * <element name="requestorsCity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 27 * <element name="requestorsState" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 28 * <element name="requestorsZipCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 29 * <element name="requestorsCountryCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 30 * <element name="requestorsPhone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 31 * <element name="requestorsEmail" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 32 * <element name="requestorsSMS" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 33 * <element name="requestorType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 34 * </sequence> 35 * </restriction> 36 * </complexContent> 37 * </complexType> 38 * </pre> 39 */ 40 41 @XmlAccessorType(XmlAccessType.FIELD) 42 @XmlType(name = "createPreOrderForCitation", propOrder = { 43 "citationString", 44 "routeRequesterReceipt", 45 "requestorsNote", 46 /*"requestorsFirstName", 47 "requestorsLastName", 48 "requestorsAddress1", 49 "requestorsAddress2", 50 "requestorsCity", 51 "requestorsState", 52 "requestorsZipCode", 53 "requestorsCountryCode", 54 "requestorsPhone", 55 "requestorsEmail", 56 "requestorsSMS",*/ 57 "requestorType", 58 "requestorId" 59 }) 60 public class CreatePreOrderForCitation { 61 62 protected String citationString; 63 protected String routeRequesterReceipt; 64 protected String requestorsNote; 65 /*protected String requestorsFirstName; 66 protected String requestorsLastName; 67 protected String requestorsAddress1; 68 protected String requestorsAddress2; 69 protected String requestorsCity; 70 protected String requestorsState; 71 protected String requestorsZipCode; 72 protected String requestorsCountryCode; 73 protected String requestorsPhone; 74 protected String requestorsEmail; 75 protected String requestorsSMS;*/ 76 protected String requestorType; 77 protected String requestorId; 78 79 /** 80 * Gets the value of the citationString property. 81 * 82 * @return possible object is 83 * {@link String } 84 */ 85 public String getCitationString() { 86 return citationString; 87 } 88 89 /** 90 * Sets the value of the citationString property. 91 * 92 * @param value allowed object is 93 * {@link String } 94 */ 95 public void setCitationString(String citationString) { 96 this.citationString = citationString; 97 } 98 99 /** 100 * Gets the value of the routeRequesterReceipt property. 101 * 102 * @return possible object is 103 * {@link String } 104 */ 105 public String getRouteRequesterReceipt() { 106 return routeRequesterReceipt; 107 } 108 109 /** 110 * Sets the value of the routeRequesterReceipt property. 111 * 112 * @param value allowed object is 113 * {@link String } 114 */ 115 public void setRouteRequesterReceipt(String routeRequesterReceipt) { 116 this.routeRequesterReceipt = routeRequesterReceipt; 117 } 118 119 /** 120 * Gets the value of the requestorsNote property. 121 * 122 * @return possible object is 123 * {@link String } 124 */ 125 public String getRequestorsNote() { 126 return requestorsNote; 127 } 128 129 /** 130 * Sets the value of the requestorsNote property. 131 * 132 * @param value allowed object is 133 * {@link String } 134 */ 135 public void setRequestorsNote(String requestorsNote) { 136 this.requestorsNote = requestorsNote; 137 } 138 139 /* *//** 140 * Gets the value of the requestorsFirstName property. 141 * 142 * @return 143 * possible object is 144 * {@link String } 145 * 146 *//* 147 public String getRequestorsFirstName() { 148 return requestorsFirstName; 149 } 150 151 *//** 152 * Sets the value of the requestorsFirstName property. 153 * 154 * @param value 155 * allowed object is 156 * {@link String } 157 * 158 *//* 159 public void setRequestorsFirstName(String requestorsFirstName) { 160 this.requestorsFirstName = requestorsFirstName; 161 } 162 163 *//** 164 * Gets the value of the requestorsLastName property. 165 * 166 * @return 167 * possible object is 168 * {@link String } 169 * 170 *//* 171 public String getRequestorsLastName() { 172 return requestorsLastName; 173 } 174 175 *//** 176 * Sets the value of the requestorsLastName property. 177 * 178 * @param value 179 * allowed object is 180 * {@link String } 181 * 182 *//* 183 public void setRequestorsLastName(String requestorsLastName) { 184 this.requestorsLastName = requestorsLastName; 185 } 186 187 *//** 188 * Gets the value of the requestorsAddress1 property. 189 * 190 * @return 191 * possible object is 192 * {@link String } 193 * 194 *//* 195 public String getRequestorsAddress1() { 196 return requestorsAddress1; 197 } 198 199 *//** 200 * Sets the value of the requestorsAddress1 property. 201 * 202 * @param value 203 * allowed object is 204 * {@link String } 205 * 206 *//* 207 public void setRequestorsAddress1(String requestorsAddress1) { 208 this.requestorsAddress1 = requestorsAddress1; 209 } 210 211 *//** 212 * Gets the value of the requestorsAddress2 property. 213 * 214 * @return 215 * possible object is 216 * {@link String } 217 * 218 *//* 219 public String getRequestorsAddress2() { 220 return requestorsAddress2; 221 } 222 223 *//** 224 * Sets the value of the requestorsAddress2 property. 225 * 226 * @param value 227 * allowed object is 228 * {@link String } 229 * 230 *//* 231 public void setRequestorsAddress2(String requestorsAddress2) { 232 this.requestorsAddress2 = requestorsAddress2; 233 } 234 235 *//** 236 * Gets the value of the requestorsCity property. 237 * 238 * @return 239 * possible object is 240 * {@link String } 241 * 242 *//* 243 public String getRequestorsCity() { 244 return requestorsCity; 245 } 246 247 *//** 248 * Sets the value of the requestorsCity property. 249 * 250 * @param value 251 * allowed object is 252 * {@link String } 253 * 254 *//* 255 public void setRequestorsCity(String requestorsCity) { 256 this.requestorsCity = requestorsCity; 257 } 258 259 *//** 260 * Gets the value of the requestorsState property. 261 * 262 * @return 263 * possible object is 264 * {@link String } 265 * 266 *//* 267 public String getRequestorsState() { 268 return requestorsState; 269 } 270 271 *//** 272 * Sets the value of the requestorsState property. 273 * 274 * @param value 275 * allowed object is 276 * {@link String } 277 * 278 *//* 279 public void setRequestorsState(String requestorsState) { 280 this.requestorsState = requestorsState; 281 } 282 283 *//** 284 * Gets the value of the requestorsZipCode property. 285 * 286 * @return 287 * possible object is 288 * {@link String } 289 * 290 *//* 291 public String getRequestorsZipCode() { 292 return requestorsZipCode; 293 } 294 295 *//** 296 * Sets the value of the requestorsZipCode property. 297 * 298 * @param value 299 * allowed object is 300 * {@link String } 301 * 302 *//* 303 public void setRequestorsZipCode(String requestorsZipCode) { 304 this.requestorsZipCode = requestorsZipCode; 305 } 306 307 *//** 308 * Gets the value of the requestorsCountryCode property. 309 * 310 * @return 311 * possible object is 312 * {@link String } 313 * 314 *//* 315 public String getRequestorsCountryCode() { 316 return requestorsCountryCode; 317 } 318 319 *//** 320 * Sets the value of the requestorsCountryCode property. 321 * 322 * @param value 323 * allowed object is 324 * {@link String } 325 * 326 *//* 327 public void setRequestorsCountryCode(String requestorsCountryCode) { 328 this.requestorsCountryCode = requestorsCountryCode; 329 } 330 331 *//** 332 * Gets the value of the requestorsPhone property. 333 * 334 * @return 335 * possible object is 336 * {@link String } 337 * 338 *//* 339 public String getRequestorsPhone() { 340 return requestorsPhone; 341 } 342 343 *//** 344 * Sets the value of the requestorsPhone property. 345 * 346 * @param value 347 * allowed object is 348 * {@link String } 349 * 350 *//* 351 public void setRequestorsPhone(String requestorsPhone) { 352 this.requestorsPhone = requestorsPhone; 353 } 354 355 *//** 356 * Gets the value of the requestorsEmail property. 357 * 358 * @return 359 * possible object is 360 * {@link String } 361 * 362 *//* 363 public String getRequestorsEmail() { 364 return requestorsEmail; 365 } 366 367 *//** 368 * Sets the value of the requestorsEmail property. 369 * 370 * @param value 371 * allowed object is 372 * {@link String } 373 * 374 *//* 375 public void setRequestorsEmail(String requestorsEmail) { 376 this.requestorsEmail = requestorsEmail; 377 } 378 379 *//** 380 * Gets the value of the requestorsSMS property. 381 * 382 * @return 383 * possible object is 384 * {@link String } 385 * 386 *//* 387 public String getRequestorsSMS() { 388 return requestorsSMS; 389 } 390 391 *//** 392 * Sets the value of the requestorsSMS property. 393 * 394 * @param value 395 * allowed object is 396 * {@link String } 397 * 398 *//* 399 public void setRequestorsSMS(String requestorsSMS) { 400 this.requestorsSMS = requestorsSMS; 401 } 402 */ 403 404 /** 405 * Gets the value of the requestorType property. 406 * 407 * @return possible object is 408 * {@link String } 409 */ 410 public String getRequestorType() { 411 return requestorType; 412 } 413 414 /** 415 * Sets the value of the requestorType property. 416 * 417 * @param value allowed object is 418 * {@link String } 419 */ 420 public void setRequestorType(String requestorType) { 421 this.requestorType = requestorType; 422 } 423 424 /** 425 * Gets the requestorId attribute. 426 * 427 * @return Returns the requestorId. 428 */ 429 public String getRequestorId() { 430 return requestorId; 431 } 432 433 /** 434 * Sets the requestorId attribute value. 435 * 436 * @param requestorId The requestorId to set. 437 */ 438 public void setRequestorId(String requestorId) { 439 this.requestorId = requestorId; 440 } 441 442 }