Subversion Repositories XServices

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
30 brianR 1
 
2
3
 
4
import javax.xml.bind.JAXBElement;
5
import javax.xml.bind.annotation.XmlAccessType;
6
import javax.xml.bind.annotation.XmlAccessorType;
7
import javax.xml.bind.annotation.XmlElement;
8
import javax.xml.bind.annotation.XmlElementRef;
9
import javax.xml.bind.annotation.XmlRootElement;
10
import javax.xml.bind.annotation.XmlType;
11
12
 
13
 
14
 * <p>Java class for anonymous complex type.
15
 *
16
 * <p>The following schema fragment specifies the expected content contained within this class.
17
 *
18
 * <pre>
19
 * &lt;complexType>
20
 *   &lt;complexContent>
21
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
22
 *       &lt;sequence>
23
 *         &lt;element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/>
24
 *         &lt;element name="tableID" type="{http://www.w3.org/2001/XMLSchema}integer"/>
25
 *         &lt;element name="queryWhereClause" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
26
 *         &lt;element name="orderByClause" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
27
 *         &lt;element name="maxReturnSize" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
28
 *         &lt;element name="responseOptions" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
29
 *       &lt;/sequence>
30
 *     &lt;/restriction>
31
 *   &lt;/complexContent>
32
 * &lt;/complexType>
33
 * </pre>
34
 *
35
 *
36
 */
37
@XmlAccessorType(XmlAccessType.FIELD)
38
@XmlType(name = "", propOrder = {
39
    "auth",
40
    "tableID",
41
    "queryWhereClause",
42
    "orderByClause",
43
    "maxReturnSize",
44
    "responseOptions"
45
})
46
@XmlRootElement(name = "GetItemsByQuery")
47
public class GetItemsByQuery {
48
49
 
50
    protected JAXBElement<Auth> auth;
51
    @XmlElement(required = true)
52
    protected BigInteger tableID;
53
    @XmlElementRef(name = "queryWhereClause", namespace = "urn:aewebservices71", type = JAXBElement.class)
54
    protected JAXBElement<String> queryWhereClause;
55
    @XmlElementRef(name = "orderByClause", namespace = "urn:aewebservices71", type = JAXBElement.class)
56
    protected JAXBElement<String> orderByClause;
57
    protected BigInteger maxReturnSize;
58
    @XmlElementRef(name = "responseOptions", namespace = "urn:aewebservices71", type = JAXBElement.class)
59
    protected JAXBElement<String> responseOptions;
60
61
 
62
     * Gets the value of the auth property.
63
     *
64
     * @return
65
     *     possible object is
66
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
67
     *
68
     */
69
    public JAXBElement<Auth> getAuth() {
70
        return auth;
71
    }
72
73
 
74
     * Sets the value of the auth property.
75
     *
76
     * @param value
77
     *     allowed object is
78
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
79
     *
80
     */
81
    public void setAuth(JAXBElement<Auth> value) {
82
        this.auth = ((JAXBElement<Auth> ) value);
83
    }
84
85
 
86
     * Gets the value of the tableID property.
87
     *
88
     * @return
89
     *     possible object is
90
     *     {@link BigInteger }
91
     *
92
     */
93
    public BigInteger getTableID() {
94
        return tableID;
95
    }
96
97
 
98
     * Sets the value of the tableID property.
99
     *
100
     * @param value
101
     *     allowed object is
102
     *     {@link BigInteger }
103
     *
104
     */
105
    public void setTableID(BigInteger value) {
106
        this.tableID = value;
107
    }
108
109
 
110
     * Gets the value of the queryWhereClause property.
111
     *
112
     * @return
113
     *     possible object is
114
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
115
     *
116
     */
117
    public JAXBElement<String> getQueryWhereClause() {
118
        return queryWhereClause;
119
    }
120
121
 
122
     * Sets the value of the queryWhereClause property.
123
     *
124
     * @param value
125
     *     allowed object is
126
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
127
     *
128
     */
129
    public void setQueryWhereClause(JAXBElement<String> value) {
130
        this.queryWhereClause = ((JAXBElement<String> ) value);
131
    }
132
133
 
134
     * Gets the value of the orderByClause property.
135
     *
136
     * @return
137
     *     possible object is
138
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
139
     *
140
     */
141
    public JAXBElement<String> getOrderByClause() {
142
        return orderByClause;
143
    }
144
145
 
146
     * Sets the value of the orderByClause property.
147
     *
148
     * @param value
149
     *     allowed object is
150
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
151
     *
152
     */
153
    public void setOrderByClause(JAXBElement<String> value) {
154
        this.orderByClause = ((JAXBElement<String> ) value);
155
    }
156
157
 
158
     * Gets the value of the maxReturnSize property.
159
     *
160
     * @return
161
     *     possible object is
162
     *     {@link BigInteger }
163
     *
164
     */
165
    public BigInteger getMaxReturnSize() {
166
        return maxReturnSize;
167
    }
168
169
 
170
     * Sets the value of the maxReturnSize property.
171
     *
172
     * @param value
173
     *     allowed object is
174
     *     {@link BigInteger }
175
     *
176
     */
177
    public void setMaxReturnSize(BigInteger value) {
178
        this.maxReturnSize = value;
179
    }
180
181
 
182
     * Gets the value of the responseOptions property.
183
     *
184
     * @return
185
     *     possible object is
186
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
187
     *
188
     */
189
    public JAXBElement<String> getResponseOptions() {
190
        return responseOptions;
191
    }
192
193
 
194
     * Sets the value of the responseOptions property.
195
     *
196
     * @param value
197
     *     allowed object is
198
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
199
     *
200
     */
201
    public void setResponseOptions(JAXBElement<String> value) {
202
        this.responseOptions = ((JAXBElement<String> ) value);
203
    }
204
205
 
206