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