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="itemList" type="{urn:aewebservices71}TTItem" maxOccurs="unbounded" minOccurs="0"/>
25
 *         &lt;element name="transitionName" type="{http://www.w3.org/2001/XMLSchema}string" 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
    "itemList",
39
    "transitionName",
40
    "responseOptions"
41
})
42
@XmlRootElement(name = "UpdateItemsWithName")
43
public class UpdateItemsWithName {
44
45
 
46
    protected JAXBElement<Auth> auth;
47
    protected List<TTItem> itemList;
48
    @XmlElementRef(name = "transitionName", namespace = "urn:aewebservices71", type = JAXBElement.class)
49
    protected JAXBElement<String> transitionName;
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 transitionName property.
108
     *
109
     * @return
110
     *     possible object is
111
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
112
     *
113
     */
114
    public JAXBElement<String> getTransitionName() {
115
        return transitionName;
116
    }
117
118
 
119
     * Sets the value of the transitionName property.
120
     *
121
     * @param value
122
     *     allowed object is
123
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
124
     *
125
     */
126
    public void setTransitionName(JAXBElement<String> value) {
127
        this.transitionName = ((JAXBElement<String> ) 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