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.ArrayList;
5
import java.util.List;
6
import javax.xml.bind.JAXBElement;
7
import javax.xml.bind.annotation.XmlAccessType;
8
import javax.xml.bind.annotation.XmlAccessorType;
9
import javax.xml.bind.annotation.XmlElementRef;
10
import javax.xml.bind.annotation.XmlRootElement;
11
import javax.xml.bind.annotation.XmlType;
12
13
 
14
 
15
 * <p>Java class for anonymous complex type.
16
 *
17
 * <p>The following schema fragment specifies the expected content contained within this class.
18
 *
19
 * <pre>
20
 * &lt;complexType>
21
 *   &lt;complexContent>
22
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
23
 *       &lt;sequence>
24
 *         &lt;element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/>
25
 *         &lt;element name="itemList" type="{urn:aewebservices71}TTItem" maxOccurs="unbounded" minOccurs="0"/>
26
 *         &lt;element name="transitionId" 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
    "itemList",
40
    "transitionId",
41
    "responseOptions"
42
})
43
@XmlRootElement(name = "UpdateItems")
44
public class UpdateItems {
45
46
 
47
    protected JAXBElement<Auth> auth;
48
    protected List<TTItem> itemList;
49
    protected BigInteger transitionId;
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 itemList property.
79
     *
80
     * <p>
81
     * This accessor method returns a reference to the live list,
82
     * not a snapshot. Therefore any modification you make to the
83
     * returned list will be present inside the JAXB object.
84
     * This is why there is not a <CODE>set</CODE> method for the itemList property.
85
     *
86
     * <p>
87
     * For example, to add a new item, do as follows:
88
     * <pre>
89
     *    getItemList().add(newItem);
90
     * </pre>
91
     *
92
     *
93
     * <p>
94
     * Objects of the following type(s) are allowed in the list
95
     * {@link TTItem }
96
     *
97
     *
98
     */
99
    public List<TTItem> getItemList() {
100
        if (itemList == null) {
101
            itemList = new ArrayList<TTItem>();
102
        }
103
        return this.itemList;
104
    }
105
106
 
107
     * Gets the value of the transitionId property.
108
     *
109
     * @return
110
     *     possible object is
111
     *     {@link BigInteger }
112
     *
113
     */
114
    public BigInteger getTransitionId() {
115
        return transitionId;
116
    }
117
118
 
119
     * Sets the value of the transitionId property.
120
     *
121
     * @param value
122
     *     allowed object is
123
     *     {@link BigInteger }
124
     *
125
     */
126
    public void setTransitionId(BigInteger value) {
127
        this.transitionId = value;
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