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="itemIdList" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
25
 *         &lt;element name="responseOptions" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
26
 *       &lt;/sequence>
27
 *     &lt;/restriction>
28
 *   &lt;/complexContent>
29
 * &lt;/complexType>
30
 * </pre>
31
 *
32
 *
33
 */
34
@XmlAccessorType(XmlAccessType.FIELD)
35
@XmlType(name = "", propOrder = {
36
    "auth",
37
    "itemIdList",
38
    "responseOptions"
39
})
40
@XmlRootElement(name = "GetItems")
41
public class GetItems {
42
43
 
44
    protected JAXBElement<Auth> auth;
45
    protected List<String> itemIdList;
46
    @XmlElementRef(name = "responseOptions", namespace = "urn:aewebservices71", type = JAXBElement.class)
47
    protected JAXBElement<String> responseOptions;
48
49
 
50
     * Gets the value of the auth property.
51
     *
52
     * @return
53
     *     possible object is
54
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
55
     *
56
     */
57
    public JAXBElement<Auth> getAuth() {
58
        return auth;
59
    }
60
61
 
62
     * Sets the value of the auth property.
63
     *
64
     * @param value
65
     *     allowed object is
66
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
67
     *
68
     */
69
    public void setAuth(JAXBElement<Auth> value) {
70
        this.auth = ((JAXBElement<Auth> ) value);
71
    }
72
73
 
74
     * Gets the value of the itemIdList property.
75
     *
76
     * <p>
77
     * This accessor method returns a reference to the live list,
78
     * not a snapshot. Therefore any modification you make to the
79
     * returned list will be present inside the JAXB object.
80
     * This is why there is not a <CODE>set</CODE> method for the itemIdList property.
81
     *
82
     * <p>
83
     * For example, to add a new item, do as follows:
84
     * <pre>
85
     *    getItemIdList().add(newItem);
86
     * </pre>
87
     *
88
     *
89
     * <p>
90
     * Objects of the following type(s) are allowed in the list
91
     * {@link String }
92
     *
93
     *
94
     */
95
    public List<String> getItemIdList() {
96
        if (itemIdList == null) {
97
            itemIdList = new ArrayList<String>();
98
        }
99
        return this.itemIdList;
100
    }
101
102
 
103
     * Gets the value of the responseOptions property.
104
     *
105
     * @return
106
     *     possible object is
107
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
108
     *
109
     */
110
    public JAXBElement<String> getResponseOptions() {
111
        return responseOptions;
112
    }
113
114
 
115
     * Sets the value of the responseOptions property.
116
     *
117
     * @param value
118
     *     allowed object is
119
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
120
     *
121
     */
122
    public void setResponseOptions(JAXBElement<String> value) {
123
        this.responseOptions = ((JAXBElement<String> ) value);
124
    }
125
126
 
127