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.annotation.XmlAccessType;
5
import javax.xml.bind.annotation.XmlAccessorType;
6
import javax.xml.bind.annotation.XmlElementRef;
7
import javax.xml.bind.annotation.XmlRootElement;
8
import javax.xml.bind.annotation.XmlType;
9
10
 
11
 
12
 * <p>Java class for anonymous complex type.
13
 *
14
 * <p>The following schema fragment specifies the expected content contained within this class.
15
 *
16
 * <pre>
17
 * &lt;complexType>
18
 *   &lt;complexContent>
19
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20
 *       &lt;sequence>
21
 *         &lt;element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/>
22
 *         &lt;element name="item" type="{urn:aewebservices71}TTItem" minOccurs="0"/>
23
 *         &lt;element name="transitionName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
24
 *         &lt;element name="responseOptions" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
25
 *       &lt;/sequence>
26
 *     &lt;/restriction>
27
 *   &lt;/complexContent>
28
 * &lt;/complexType>
29
 * </pre>
30
 *
31
 *
32
 */
33
@XmlAccessorType(XmlAccessType.FIELD)
34
@XmlType(name = "", propOrder = {
35
    "auth",
36
    "item",
37
    "transitionName",
38
    "responseOptions"
39
})
40
@XmlRootElement(name = "UpdateItemWithName")
41
public class UpdateItemWithName {
42
43
 
44
    protected JAXBElement<Auth> auth;
45
    @XmlElementRef(name = "item", namespace = "urn:aewebservices71", type = JAXBElement.class)
46
    protected JAXBElement<TTItem> item;
47
    @XmlElementRef(name = "transitionName", namespace = "urn:aewebservices71", type = JAXBElement.class)
48
    protected JAXBElement<String> transitionName;
49
    @XmlElementRef(name = "responseOptions", namespace = "urn:aewebservices71", type = JAXBElement.class)
50
    protected JAXBElement<String> responseOptions;
51
52
 
53
     * Gets the value of the auth property.
54
     *
55
     * @return
56
     *     possible object is
57
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
58
     *
59
     */
60
    public JAXBElement<Auth> getAuth() {
61
        return auth;
62
    }
63
64
 
65
     * Sets the value of the auth property.
66
     *
67
     * @param value
68
     *     allowed object is
69
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
70
     *
71
     */
72
    public void setAuth(JAXBElement<Auth> value) {
73
        this.auth = ((JAXBElement<Auth> ) value);
74
    }
75
76
 
77
     * Gets the value of the item property.
78
     *
79
     * @return
80
     *     possible object is
81
     *     {@link JAXBElement }{@code <}{@link TTItem }{@code >}
82
     *
83
     */
84
    public JAXBElement<TTItem> getItem() {
85
        return item;
86
    }
87
88
 
89
     * Sets the value of the item property.
90
     *
91
     * @param value
92
     *     allowed object is
93
     *     {@link JAXBElement }{@code <}{@link TTItem }{@code >}
94
     *
95
     */
96
    public void setItem(JAXBElement<TTItem> value) {
97
        this.item = ((JAXBElement<TTItem> ) value);
98
    }
99
100
 
101
     * Gets the value of the transitionName property.
102
     *
103
     * @return
104
     *     possible object is
105
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
106
     *
107
     */
108
    public JAXBElement<String> getTransitionName() {
109
        return transitionName;
110
    }
111
112
 
113
     * Sets the value of the transitionName property.
114
     *
115
     * @param value
116
     *     allowed object is
117
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
118
     *
119
     */
120
    public void setTransitionName(JAXBElement<String> value) {
121
        this.transitionName = ((JAXBElement<String> ) value);
122
    }
123
124
 
125
     * Gets the value of the responseOptions property.
126
     *
127
     * @return
128
     *     possible object is
129
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
130
     *
131
     */
132
    public JAXBElement<String> getResponseOptions() {
133
        return responseOptions;
134
    }
135
136
 
137
     * Sets the value of the responseOptions property.
138
     *
139
     * @param value
140
     *     allowed object is
141
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
142
     *
143
     */
144
    public void setResponseOptions(JAXBElement<String> value) {
145
        this.responseOptions = ((JAXBElement<String> ) value);
146
    }
147
148
 
149