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="item" type="{urn:aewebservices71}TTItem" minOccurs="0"/>
26
 *         &lt;element name="responseOptions" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
27
 *       &lt;/sequence>
28
 *     &lt;/restriction>
29
 *   &lt;/complexContent>
30
 * &lt;/complexType>
31
 * </pre>
32
 *
33
 *
34
 */
35
@XmlAccessorType(XmlAccessType.FIELD)
36
@XmlType(name = "", propOrder = {
37
    "auth",
38
    "tableID",
39
    "item",
40
    "responseOptions"
41
})
42
@XmlRootElement(name = "CreateAuxItem")
43
public class CreateAuxItem {
44
45
 
46
    protected JAXBElement<Auth> auth;
47
    @XmlElement(required = true)
48
    protected BigInteger tableID;
49
    @XmlElementRef(name = "item", namespace = "urn:aewebservices71", type = JAXBElement.class)
50
    protected JAXBElement<TTItem> item;
51
    @XmlElementRef(name = "responseOptions", namespace = "urn:aewebservices71", type = JAXBElement.class)
52
    protected JAXBElement<String> responseOptions;
53
54
 
55
     * Gets the value of the auth property.
56
     *
57
     * @return
58
     *     possible object is
59
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
60
     *
61
     */
62
    public JAXBElement<Auth> getAuth() {
63
        return auth;
64
    }
65
66
 
67
     * Sets the value of the auth property.
68
     *
69
     * @param value
70
     *     allowed object is
71
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
72
     *
73
     */
74
    public void setAuth(JAXBElement<Auth> value) {
75
        this.auth = ((JAXBElement<Auth> ) value);
76
    }
77
78
 
79
     * Gets the value of the tableID property.
80
     *
81
     * @return
82
     *     possible object is
83
     *     {@link BigInteger }
84
     *
85
     */
86
    public BigInteger getTableID() {
87
        return tableID;
88
    }
89
90
 
91
     * Sets the value of the tableID property.
92
     *
93
     * @param value
94
     *     allowed object is
95
     *     {@link BigInteger }
96
     *
97
     */
98
    public void setTableID(BigInteger value) {
99
        this.tableID = value;
100
    }
101
102
 
103
     * Gets the value of the item property.
104
     *
105
     * @return
106
     *     possible object is
107
     *     {@link JAXBElement }{@code <}{@link TTItem }{@code >}
108
     *
109
     */
110
    public JAXBElement<TTItem> getItem() {
111
        return item;
112
    }
113
114
 
115
     * Sets the value of the item property.
116
     *
117
     * @param value
118
     *     allowed object is
119
     *     {@link JAXBElement }{@code <}{@link TTItem }{@code >}
120
     *
121
     */
122
    public void setItem(JAXBElement<TTItem> value) {
123
        this.item = ((JAXBElement<TTItem> ) value);
124
    }
125
126
 
127
     * Gets the value of the responseOptions property.
128
     *
129
     * @return
130
     *     possible object is
131
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
132
     *
133
     */
134
    public JAXBElement<String> getResponseOptions() {
135
        return responseOptions;
136
    }
137
138
 
139
     * Sets the value of the responseOptions property.
140
     *
141
     * @param value
142
     *     allowed object is
143
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
144
     *
145
     */
146
    public void setResponseOptions(JAXBElement<String> value) {
147
        this.responseOptions = ((JAXBElement<String> ) value);
148
    }
149
150
 
151