View Javadoc
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 createPreOrderForForm complex type.
11   * <p/>
12   * <p>The following schema fragment specifies the expected content contained within this class.
13   * <p/>
14   * <pre>
15   * &lt;complexType name="createPreOrderForForm">
16   *   &lt;complexContent>
17   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
18   *       &lt;sequence>
19   *         &lt;element name="title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
20   *         &lt;element name="author" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
21   *         &lt;element name="edition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22   *         &lt;element name="series" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
23   *         &lt;element name="publisher" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
24   *         &lt;element name="placeOfPublication" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
25   *         &lt;element name="yearOfPublication" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
26   *         &lt;element name="standardNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
27   *         &lt;element name="typeOfStandardNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
28   *         &lt;element name="routeRequestorReceipt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
29   *         &lt;element name="requestorsNote" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
30   *         &lt;element name="requestorsFirstName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
31   *         &lt;element name="requestorsLastName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
32   *         &lt;element name="requestorsAddress1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
33   *         &lt;element name="requestorsAddress2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
34   *         &lt;element name="requestorsCity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
35   *         &lt;element name="requestorsState" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
36   *         &lt;element name="requestorsZipCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
37   *         &lt;element name="requestorsCountryCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
38   *         &lt;element name="requestorsPhone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
39   *         &lt;element name="requestorsEmail" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
40   *         &lt;element name="requestorsSMS" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
41   *         &lt;element name="requestorType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
42   *       &lt;/sequence>
43   *     &lt;/restriction>
44   *   &lt;/complexContent>
45   * &lt;/complexType>
46   * </pre>
47   */
48  @XmlAccessorType(XmlAccessType.FIELD)
49  @XmlType(name = "createPreOrderForForm", propOrder = {
50          "title",
51          "author",
52          "edition",
53          "series",
54          "publisher",
55          "placeOfPublication",
56          "yearOfPublication",
57          "standardNumber",
58          "typeOfStandardNumber",
59          "routeRequestorReceipt",
60          "requestorsNote",
61          /*
62           * "requestorsFirstName", "requestorsLastName", "requestorsAddress1", "requestorsAddress2", "requestorsCity",
63           * "requestorsState", "requestorsZipCode", "requestorsCountryCode", "requestorsPhone", "requestorsEmail", "requestorsSMS",
64           */
65          "requestorType", "requestorId"
66  })
67  
68  
69  public class CreatePreOrderForForm {
70  
71      protected String title;
72      protected String author;
73      protected String edition;
74      protected String series;
75      protected String publisher;
76      protected String placeOfPublication;
77      protected String yearOfPublication;
78      protected String standardNumber;
79      protected String typeOfStandardNumber;
80      protected String routeRequestorReceipt;
81      protected String requestorsNote;
82      /*
83       * protected String requestorsFirstName; protected String requestorsLastName; protected String requestorsAddress1; protected
84       * String requestorsAddress2; protected String requestorsCity; protected String requestorsState; protected String
85       * requestorsZipCode; protected String requestorsCountryCode; protected String requestorsPhone; protected String
86       * requestorsEmail; protected String requestorsSMS;
87       */
88      protected String requestorType;
89      protected String requestorId;
90  
91      /**
92       * Gets the value of the title property.
93       *
94       * @return possible object is
95       *         {@link String }
96       */
97      public String getTitle() {
98          return title;
99      }
100 
101     /**
102      * Sets the value of the title property.
103      *
104      * @param value allowed object is
105      *              {@link String }
106      */
107     public void setTitle(String title) {
108         this.title = title;
109     }
110 
111     /**
112      * Gets the value of the author property.
113      *
114      * @return possible object is
115      *         {@link String }
116      */
117     public String getAuthor() {
118         return author;
119     }
120 
121     /**
122      * Sets the value of the author property.
123      *
124      * @param value allowed object is
125      *              {@link String }
126      */
127     public void setAuthor(String author) {
128         this.author = author;
129     }
130 
131     /**
132      * Gets the value of the edition property.
133      *
134      * @return possible object is
135      *         {@link String }
136      */
137     public String getEdition() {
138         return edition;
139     }
140 
141     /**
142      * Sets the value of the edition property.
143      *
144      * @param value allowed object is
145      *              {@link String }
146      */
147     public void setEdition(String edition) {
148         this.edition = edition;
149     }
150 
151     /**
152      * Gets the value of the series property.
153      *
154      * @return possible object is
155      *         {@link String }
156      */
157     public String getSeries() {
158         return series;
159     }
160 
161     /**
162      * Sets the value of the series property.
163      *
164      * @param value allowed object is
165      *              {@link String }
166      */
167     public void setSeries(String series) {
168         this.series = series;
169     }
170 
171     /**
172      * Gets the value of the publisher property.
173      *
174      * @return possible object is
175      *         {@link String }
176      */
177     public String getPublisher() {
178         return publisher;
179     }
180 
181     /**
182      * Sets the value of the publisher property.
183      *
184      * @param value allowed object is
185      *              {@link String }
186      */
187     public void setPublisher(String publisher) {
188         this.publisher = publisher;
189     }
190 
191     /**
192      * Gets the value of the placeOfPublication property.
193      *
194      * @return possible object is
195      *         {@link String }
196      */
197     public String getPlaceOfPublication() {
198         return placeOfPublication;
199     }
200 
201     /**
202      * Sets the value of the placeOfPublication property.
203      *
204      * @param value allowed object is
205      *              {@link String }
206      */
207     public void setPlaceOfPublication(String placeOfPublication) {
208         this.placeOfPublication = placeOfPublication;
209     }
210 
211 
212     /**
213      * Gets the value of the yearOfPublication property.
214      *
215      * @return possible object is
216      *         {@link String }
217      */
218     public String getYearOfPublication() {
219         return yearOfPublication;
220     }
221 
222     /**
223      * Sets the value of the yearOfPublication property.
224      *
225      * @param value allowed object is
226      *              {@link String }
227      */
228     public void setYearOfPublication(String yearOfPublication) {
229         this.yearOfPublication = yearOfPublication;
230     }
231 
232     /**
233      * Gets the value of the standardNumber property.
234      *
235      * @return possible object is
236      *         {@link String }
237      */
238     public String getStandardNumber() {
239         return standardNumber;
240     }
241 
242     /**
243      * Sets the value of the standardNumber property.
244      *
245      * @param value allowed object is
246      *              {@link String }
247      */
248     public void setStandardNumber(String standardNumber) {
249         this.standardNumber = standardNumber;
250     }
251 
252     /**
253      * Gets the value of the typeOfStandardNumber property.
254      *
255      * @return possible object is
256      *         {@link String }
257      */
258     public String getTypeOfStandardNumber() {
259         return typeOfStandardNumber;
260     }
261 
262     /**
263      * Sets the value of the typeOfStandardNumber property.
264      *
265      * @param value allowed object is
266      *              {@link String }
267      */
268     public void setTypeOfStandardNumber(String typeOfStandardNumber) {
269         this.typeOfStandardNumber = typeOfStandardNumber;
270     }
271 
272     /**
273      * Gets the value of the routeRequestorReceipt property.
274      *
275      * @return possible object is
276      *         {@link String }
277      */
278     public String getRouteRequestorReceipt() {
279         return routeRequestorReceipt;
280     }
281 
282     /**
283      * Sets the value of the routeRequestorReceipt property.
284      *
285      * @param value allowed object is
286      *              {@link String }
287      */
288     public void setRouteRequestorReceipt(String routeRequestorReceipt) {
289         this.routeRequestorReceipt = routeRequestorReceipt;
290     }
291 
292     /**
293      * Gets the value of the requestorsNote property.
294      *
295      * @return possible object is
296      *         {@link String }
297      */
298     public String getRequestorsNote() {
299         return requestorsNote;
300     }
301 
302     /**
303      * Sets the value of the requestorsNote property.
304      *
305      * @param value allowed object is
306      *              {@link String }
307      */
308     public void setRequestorsNote(String requestorsNote) {
309         this.requestorsNote = requestorsNote;
310     }
311 
312     /**
313      * Gets the value of the requestorsFirstName property.
314      *
315      * @return
316      *     possible object is
317      *     {@link String }
318      *
319      */
320 
321     /*
322      * public String getRequestorsFirstName() { return requestorsFirstName; }
323      *//**
324      * Sets the value of the requestorsFirstName property.
325      *
326      * @param value allowed object is {@link String }
327      */
328     /*
329      * public void setRequestorsFirstName(String requestorsFirstName) { this.requestorsFirstName = requestorsFirstName; }
330      *//**
331      * Gets the value of the requestorsLastName property.
332      *
333      * @return possible object is {@link String }
334      */
335     /*
336      * public String getRequestorsLastName() { return requestorsLastName; }
337      *//**
338      * Sets the value of the requestorsLastName property.
339      *
340      * @param value allowed object is {@link String }
341      */
342     /*
343      * public void setRequestorsLastName(String requestorsLastName) { this.requestorsLastName = requestorsLastName; }
344      *//**
345      * Gets the value of the requestorsAddress1 property.
346      *
347      * @return possible object is {@link String }
348      */
349     /*
350      * public String getRequestorsAddress1() { return requestorsAddress1; }
351      *//**
352      * Sets the value of the requestorsAddress1 property.
353      *
354      * @param value allowed object is {@link String }
355      */
356     /*
357      * public void setRequestorsAddress1(String requestorsAddress1) { this.requestorsAddress1 = requestorsAddress1; }
358      *//**
359      * Gets the value of the requestorsAddress2 property.
360      *
361      * @return possible object is {@link String }
362      */
363     /*
364      * public String getRequestorsAddress2() { return requestorsAddress2; }
365      *//**
366      * Sets the value of the requestorsAddress2 property.
367      *
368      * @param value allowed object is {@link String }
369      */
370     /*
371      * public void setRequestorsAddress2(String requestorsAddress2) { this.requestorsAddress2 = requestorsAddress2; }
372      *//**
373      * Gets the value of the requestorsCity property.
374      *
375      * @return possible object is {@link String }
376      */
377     /*
378      * public String getRequestorsCity() { return requestorsCity; }
379      *//**
380      * Sets the value of the requestorsCity property.
381      *
382      * @param value allowed object is {@link String }
383      */
384     /*
385      * public void setRequestorsCity(String requestorsCity) { this.requestorsCity = requestorsCity; }
386      *//**
387      * Gets the value of the requestorsState property.
388      *
389      * @return possible object is {@link String }
390      */
391     /*
392      * public String getRequestorsState() { return requestorsState; }
393      *//**
394      * Sets the value of the requestorsState property.
395      *
396      * @param value allowed object is {@link String }
397      */
398     /*
399      * public void setRequestorsState(String requestorsState) { this.requestorsState = requestorsState; }
400      *//**
401      * Gets the value of the requestorsZipCode property.
402      *
403      * @return possible object is {@link String }
404      */
405     /*
406      * public String getRequestorsZipCode() { return requestorsZipCode; }
407      *//**
408      * Sets the value of the requestorsZipCode property.
409      *
410      * @param value allowed object is {@link String }
411      */
412     /*
413      * public void setRequestorsZipCode(String requestorsZipCode) { this.requestorsZipCode = requestorsZipCode; }
414      *//**
415      * Gets the value of the requestorsCountryCode property.
416      *
417      * @return possible object is {@link String }
418      */
419     /*
420      * public String getRequestorsCountryCode() { return requestorsCountryCode; }
421      *//**
422      * Sets the value of the requestorsCountryCode property.
423      *
424      * @param value allowed object is {@link String }
425      */
426     /*
427      * public void setRequestorsCountryCode(String requestorsCountryCode) { this.requestorsCountryCode = requestorsCountryCode; }
428      *//**
429      * Gets the value of the requestorsPhone property.
430      *
431      * @return possible object is {@link String }
432      */
433     /*
434      * public String getRequestorsPhone() { return requestorsPhone; }
435      *//**
436      * Sets the value of the requestorsPhone property.
437      *
438      * @param value allowed object is {@link String }
439      */
440     /*
441      * public void setRequestorsPhone(String requestorsPhone) { this.requestorsPhone = requestorsPhone; }
442      *//**
443      * Gets the value of the requestorsEmail property.
444      *
445      * @return possible object is {@link String }
446      */
447     /*
448      * public String getRequestorsEmail() { return requestorsEmail; }
449      *//**
450      * Sets the value of the requestorsEmail property.
451      *
452      * @param value allowed object is {@link String }
453      */
454     /*
455      * public void setRequestorsEmail(String requestorsEmail) { this.requestorsEmail = requestorsEmail; }
456      *//**
457      * Gets the value of the requestorsSMS property.
458      *
459      * @return possible object is {@link String }
460      */
461     /*
462      * public String getRequestorsSMS() { return requestorsSMS; }
463      *//**
464      * Sets the value of the requestorsSMS property.
465      *
466      * @param value allowed object is {@link String }
467      */
468     /*
469      * public void setRequestorsSMS(String requestorsSMS) { this.requestorsSMS = requestorsSMS; }
470      */
471 
472     /**
473      * Gets the value of the requestorType property.
474      *
475      * @return possible object is
476      *         {@link String }
477      */
478     public String getRequestorType() {
479         return requestorType;
480     }
481 
482     /**
483      * Sets the value of the requestorType property.
484      *
485      * @param value allowed object is
486      *              {@link String }
487      */
488     public void setRequestorType(String requestorType) {
489         this.requestorType = requestorType;
490     }
491 
492     /**
493      * Gets the requestorId attribute.
494      *
495      * @return Returns the requestorId.
496      */
497     public String getRequestorId() {
498         return requestorId;
499     }
500 
501     /**
502      * Sets the requestorId attribute value.
503      *
504      * @param requestorId The requestorId to set.
505      */
506     public void setRequestorId(String requestorId) {
507         this.requestorId = requestorId;
508     }
509 
510 }