Subversion Repositories XServices

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
30 brianR 1
 
2
3
 
4
import java.util.List;
5
import javax.xml.bind.JAXBElement;
6
import javax.xml.bind.annotation.XmlAccessType;
7
import javax.xml.bind.annotation.XmlAccessorType;
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="tableDBName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
25
 *         &lt;element name="itemList" type="{urn:aewebservices71}TTItem" maxOccurs="unbounded" 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
    "tableDBName",
39
    "itemList",
40
    "responseOptions"
41
})
42
@XmlRootElement(name = "CreateAuxItemsWithName")
43
public class CreateAuxItemsWithName {
44
45
 
46
    protected JAXBElement<Auth> auth;
47
    @XmlElementRef(name = "tableDBName", namespace = "urn:aewebservices71", type = JAXBElement.class)
48
    protected JAXBElement<String> tableDBName;
49
    protected List<TTItem> itemList;
50
    @XmlElementRef(name = "responseOptions", namespace = "urn:aewebservices71", type = JAXBElement.class)
51
    protected JAXBElement<String> responseOptions;
52
53
 
54
     * Gets the value of the auth property.
55
     *
56
     * @return
57
     *     possible object is
58
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
59
     *
60
     */
61
    public JAXBElement<Auth> getAuth() {
62
        return auth;
63
    }
64
65
 
66
     * Sets the value of the auth property.
67
     *
68
     * @param value
69
     *     allowed object is
70
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
71
     *
72
     */
73
    public void setAuth(JAXBElement<Auth> value) {
74
        this.auth = ((JAXBElement<Auth> ) value);
75
    }
76
77
 
78
     * Gets the value of the tableDBName property.
79
     *
80
     * @return
81
     *     possible object is
82
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
83
     *
84
     */
85
    public JAXBElement<String> getTableDBName() {
86
        return tableDBName;
87
    }
88
89
 
90
     * Sets the value of the tableDBName property.
91
     *
92
     * @param value
93
     *     allowed object is
94
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
95
     *
96
     */
97
    public void setTableDBName(JAXBElement<String> value) {
98
        this.tableDBName = ((JAXBElement<String> ) value);
99
    }
100
101
 
102
     * Gets the value of the itemList property.
103
     *
104
     * <p>
105
     * This accessor method returns a reference to the live list,
106
     * not a snapshot. Therefore any modification you make to the
107
     * returned list will be present inside the JAXB object.
108
     * This is why there is not a <CODE>set</CODE> method for the itemList property.
109
     *
110
     * <p>
111
     * For example, to add a new item, do as follows:
112
     * <pre>
113
     *    getItemList().add(newItem);
114
     * </pre>
115
     *
116
     *
117
     * <p>
118
     * Objects of the following type(s) are allowed in the list
119
     * {@link TTItem }
120
     *
121
     *
122
     */
123
    public List<TTItem> getItemList() {
124
        if (itemList == null) {
125
            itemList = new ArrayList<TTItem>();
126
        }
127
        return this.itemList;
128
    }
129
130
 
131
     * Gets the value of the responseOptions property.
132
     *
133
     * @return
134
     *     possible object is
135
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
136
     *
137
     */
138
    public JAXBElement<String> getResponseOptions() {
139
        return responseOptions;
140
    }
141
142
 
143
     * Sets the value of the responseOptions property.
144
     *
145
     * @param value
146
     *     allowed object is
147
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
148
     *
149
     */
150
    public void setResponseOptions(JAXBElement<String> value) {
151
        this.responseOptions = ((JAXBElement<String> ) value);
152
    }
153
154
 
155