Subversion Repositories XServices

Rev

Rev 30 | Details | Compare with Previous | 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;/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
    "itemIdList"
37
})
38
@XmlRootElement(name = "DeleteItems")
39
public class DeleteItems {
40
41
 
42
    protected JAXBElement<Auth> auth;
43
    protected List<String> itemIdList;
44
45
 
46
     * Gets the value of the auth property.
47
     *
48
     * @return
49
     *     possible object is
50
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
51
     *
52
     */
53
    public JAXBElement<Auth> getAuth() {
54
        return auth;
55
    }
56
57
 
58
     * Sets the value of the auth property.
59
     *
60
     * @param value
61
     *     allowed object is
62
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
63
     *
64
     */
65
    public void setAuth(JAXBElement<Auth> value) {
66
        this.auth = ((JAXBElement<Auth> ) value);
67
    }
68
69
 
70
     * Gets the value of the itemIdList property.
71
     *
72
     * <p>
73
     * This accessor method returns a reference to the live list,
74
     * not a snapshot. Therefore any modification you make to the
75
     * returned list will be present inside the JAXB object.
76
     * This is why there is not a <CODE>set</CODE> method for the itemIdList property.
77
     *
78
     * <p>
79
     * For example, to add a new item, do as follows:
80
     * <pre>
81
     *    getItemIdList().add(newItem);
82
     * </pre>
83
     *
84
     *
85
     * <p>
86
     * Objects of the following type(s) are allowed in the list
87
     * {@link String }
88
     *
89
     *
90
     */
91
    public List<String> getItemIdList() {
92
        if (itemIdList == null) {
93
            itemIdList = new ArrayList<String>();
94
        }
95
        return this.itemIdList;
96
    }
97
98
 
99