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="itemID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
23
 *         &lt;element name="queryRange" type="{urn:aewebservices71}QueryRange" minOccurs="0"/>
24
 *       &lt;/sequence>
25
 *     &lt;/restriction>
26
 *   &lt;/complexContent>
27
 * &lt;/complexType>
28
 * </pre>
29
 *
30
 *
31
 */
32
@XmlAccessorType(XmlAccessType.FIELD)
33
@XmlType(name = "", propOrder = {
34
    "auth",
35
    "itemID",
36
    "queryRange"
37
})
38
@XmlRootElement(name = "GetStateChangeHistory")
39
public class GetStateChangeHistory {
40
41
 
42
    protected JAXBElement<Auth> auth;
43
    @XmlElementRef(name = "itemID", namespace = "urn:aewebservices71", type = JAXBElement.class)
44
    protected JAXBElement<String> itemID;
45
    @XmlElementRef(name = "queryRange", namespace = "urn:aewebservices71", type = JAXBElement.class)
46
    protected JAXBElement<QueryRange> queryRange;
47
48
 
49
     * Gets the value of the auth property.
50
     *
51
     * @return
52
     *     possible object is
53
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
54
     *
55
     */
56
    public JAXBElement<Auth> getAuth() {
57
        return auth;
58
    }
59
60
 
61
     * Sets the value of the auth property.
62
     *
63
     * @param value
64
     *     allowed object is
65
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
66
     *
67
     */
68
    public void setAuth(JAXBElement<Auth> value) {
69
        this.auth = ((JAXBElement<Auth> ) value);
70
    }
71
72
 
73
     * Gets the value of the itemID property.
74
     *
75
     * @return
76
     *     possible object is
77
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
78
     *
79
     */
80
    public JAXBElement<String> getItemID() {
81
        return itemID;
82
    }
83
84
 
85
     * Sets the value of the itemID property.
86
     *
87
     * @param value
88
     *     allowed object is
89
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
90
     *
91
     */
92
    public void setItemID(JAXBElement<String> value) {
93
        this.itemID = ((JAXBElement<String> ) value);
94
    }
95
96
 
97
     * Gets the value of the queryRange property.
98
     *
99
     * @return
100
     *     possible object is
101
     *     {@link JAXBElement }{@code <}{@link QueryRange }{@code >}
102
     *
103
     */
104
    public JAXBElement<QueryRange> getQueryRange() {
105
        return queryRange;
106
    }
107
108
 
109
     * Sets the value of the queryRange property.
110
     *
111
     * @param value
112
     *     allowed object is
113
     *     {@link JAXBElement }{@code <}{@link QueryRange }{@code >}
114
     *
115
     */
116
    public void setQueryRange(JAXBElement<QueryRange> value) {
117
        this.queryRange = ((JAXBElement<QueryRange> ) value);
118
    }
119
120
 
121