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 createPreOrderForOpenURL 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="createPreOrderForOpenURL">
16 * <complexContent>
17 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
18 * <sequence>
19 * <element name="openUrlString" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
20 * <element name="routeRequestorReceipt" 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 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "createPreOrderForOpenURL", propOrder = {
42 "openUrlString",
43 "routeRequestorReceipt",
44 "requestorsNote",
45 /*
46 * "requestorsFirstName", "requestorsLastName", "requestorsAddress1", "requestorsAddress2", "requestorsCity", "requestorsState",
47 * "requestorsZipCode", "requestorsCountryCode", "requestorsPhone", "requestorsEmail", "requestorsSMS",
48 */
49 "requestorType", "requestorId"
50 })
51 public class CreatePreOrderForOpenURL {
52
53 protected String openUrlString;
54 protected String routeRequestorReceipt;
55 protected String requestorsNote;
56 /*
57 * protected String requestorsFirstName; protected String requestorsLastName; protected String requestorsAddress1; protected
58 * String requestorsAddress2; protected String requestorsCity; protected String requestorsState; protected String
59 * requestorsZipCode; protected String requestorsCountryCode; protected String requestorsPhone; protected String
60 * requestorsEmail; protected String requestorsSMS;
61 */
62 protected String requestorType;
63 protected String requestorId;
64
65 /**
66 * Gets the value of the openUrlString property.
67 *
68 * @return possible object is
69 * {@link String }
70 */
71 public String getOpenUrlString() {
72 return openUrlString;
73 }
74
75 /**
76 * Sets the value of the openUrlString property.
77 *
78 * @param value allowed object is
79 * {@link String }
80 */
81 public void setOpenUrlString(String openUrlString) {
82 this.openUrlString = openUrlString;
83 }
84
85 /**
86 * Gets the value of the routeRequestorReceipt property.
87 *
88 * @return possible object is
89 * {@link String }
90 */
91 public String getRouteRequestorReceipt() {
92 return routeRequestorReceipt;
93 }
94
95 /**
96 * Sets the value of the routeRequestorReceipt property.
97 *
98 * @param value allowed object is
99 * {@link String }
100 */
101 public void setRouteRequestorReceipt(String routeRequestorReceipt) {
102 this.routeRequestorReceipt = routeRequestorReceipt;
103 }
104
105 /**
106 * Gets the value of the requestorsNote property.
107 *
108 * @return possible object is
109 * {@link String }
110 */
111 public String getRequestorsNote() {
112 return requestorsNote;
113 }
114
115 /**
116 * Sets the value of the requestorsNote property.
117 *
118 * @param value allowed object is
119 * {@link String }
120 */
121 public void setRequestorsNote(String requestorsNote) {
122 this.requestorsNote = requestorsNote;
123 }
124
125 /**
126 * Gets the value of the requestorsFirstName property.
127 *
128 * @return
129 * possible object is
130 * {@link String }
131 *
132 */
133 /*
134 * public String getRequestorsFirstName() { return requestorsFirstName; }
135 *//**
136 * Sets the value of the requestorsFirstName property.
137 *
138 * @param value allowed object is {@link String }
139 */
140 /*
141 * public void setRequestorsFirstName(String requestorsFirstName) { this.requestorsFirstName = requestorsFirstName; }
142 *//**
143 * Gets the value of the requestorsLastName property.
144 *
145 * @return possible object is {@link String }
146 */
147 /*
148 * public String getRequestorsLastName() { return requestorsLastName; }
149 *//**
150 * Sets the value of the requestorsLastName property.
151 *
152 * @param value allowed object is {@link String }
153 */
154 /*
155 * public void setRequestorsLastName(String requestorsLastName) { this.requestorsLastName = requestorsLastName; }
156 *//**
157 * Gets the value of the requestorsAddress1 property.
158 *
159 * @return possible object is {@link String }
160 */
161 /*
162 * public String getRequestorsAddress1() { return requestorsAddress1; }
163 *//**
164 * Sets the value of the requestorsAddress1 property.
165 *
166 * @param value allowed object is {@link String }
167 */
168 /*
169 * public void setRequestorsAddress1(String requestorsAddress1) { this.requestorsAddress1 = requestorsAddress1; }
170 *//**
171 * Gets the value of the requestorsAddress2 property.
172 *
173 * @return possible object is {@link String }
174 */
175 /*
176 * public String getRequestorsAddress2() { return requestorsAddress2; }
177 *//**
178 * Sets the value of the requestorsAddress2 property.
179 *
180 * @param value allowed object is {@link String }
181 */
182 /*
183 * public void setRequestorsAddress2(String requestorsAddress2) { this.requestorsAddress2 = requestorsAddress2; }
184 *//**
185 * Gets the value of the requestorsCity property.
186 *
187 * @return possible object is {@link String }
188 */
189 /*
190 * public String getRequestorsCity() { return requestorsCity; }
191 *//**
192 * Sets the value of the requestorsCity property.
193 *
194 * @param value allowed object is {@link String }
195 */
196 /*
197 * public void setRequestorsCity(String requestorsCity) { this.requestorsCity = requestorsCity; }
198 *//**
199 * Gets the value of the requestorsState property.
200 *
201 * @return possible object is {@link String }
202 */
203 /*
204 * public String getRequestorsState() { return requestorsState; }
205 *//**
206 * Sets the value of the requestorsState property.
207 *
208 * @param value allowed object is {@link String }
209 */
210 /*
211 * public void setRequestorsState(String requestorsState) { this.requestorsState = requestorsState; }
212 *//**
213 * Gets the value of the requestorsZipCode property.
214 *
215 * @return possible object is {@link String }
216 */
217 /*
218 * public String getRequestorsZipCode() { return requestorsZipCode; }
219 *//**
220 * Sets the value of the requestorsZipCode property.
221 *
222 * @param value allowed object is {@link String }
223 */
224 /*
225 * public void setRequestorsZipCode(String requestorsZipCode) { this.requestorsZipCode = requestorsZipCode; }
226 *//**
227 * Gets the value of the requestorsCountryCode property.
228 *
229 * @return possible object is {@link String }
230 */
231 /*
232 * public String getRequestorsCountryCode() { return requestorsCountryCode; }
233 *//**
234 * Sets the value of the requestorsCountryCode property.
235 *
236 * @param value allowed object is {@link String }
237 */
238 /*
239 * public void setRequestorsCountryCode(String requestorsCountryCode) { this.requestorsCountryCode = requestorsCountryCode; }
240 *//**
241 * Gets the value of the requestorsPhone property.
242 *
243 * @return possible object is {@link String }
244 */
245 /*
246 * public String getRequestorsPhone() { return requestorsPhone; }
247 *//**
248 * Sets the value of the requestorsPhone property.
249 *
250 * @param value allowed object is {@link String }
251 */
252 /*
253 * public void setRequestorsPhone(String requestorsPhone) { this.requestorsPhone = requestorsPhone; }
254 *//**
255 * Gets the value of the requestorsEmail property.
256 *
257 * @return possible object is {@link String }
258 */
259 /*
260 * public String getRequestorsEmail() { return requestorsEmail; }
261 *//**
262 * Sets the value of the requestorsEmail property.
263 *
264 * @param value allowed object is {@link String }
265 */
266 /*
267 * public void setRequestorsEmail(String requestorsEmail) { this.requestorsEmail = requestorsEmail; }
268 *//**
269 * Gets the value of the requestorsSMS property.
270 *
271 * @return possible object is {@link String }
272 */
273 /*
274 * public String getRequestorsSMS() { return requestorsSMS; }
275 *//**
276 * Sets the value of the requestorsSMS property.
277 *
278 * @param value allowed object is {@link String }
279 */
280 /*
281 * public void setRequestorsSMS(String requestorsSMS) { this.requestorsSMS = requestorsSMS; }
282 */
283
284 /**
285 * Gets the value of the requestorType property.
286 *
287 * @return possible object is
288 * {@link String }
289 */
290 public String getRequestorType() {
291 return requestorType;
292 }
293
294 /**
295 * Sets the value of the requestorType property.
296 *
297 * @param value allowed object is
298 * {@link String }
299 */
300 public void setRequestorType(String requestorType) {
301 this.requestorType = requestorType;
302 }
303
304 /**
305 * Gets the requestorId attribute.
306 *
307 * @return Returns the requestorId.
308 */
309 public String getRequestorId() {
310 return requestorId;
311 }
312
313 /**
314 * Sets the requestorId attribute value.
315 *
316 * @param requestorId The requestorId to set.
317 */
318 public void setRequestorId(String requestorId) {
319 this.requestorId = requestorId;
320 }
321
322 }