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.XmlType;
8
9
 
10
 
11
 * <p>Java class for Item complex type.
12
 *
13
 * <p>The following schema fragment specifies the expected content contained within this class.
14
 *
15
 * <pre>
16
 * &lt;complexType name="Item">
17
 *   &lt;complexContent>
18
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
19
 *       &lt;sequence>
20
 *         &lt;element name="itemID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
21
 *         &lt;element name="itemUUID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22
 *         &lt;element name="itemName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
23
 *       &lt;/sequence>
24
 *     &lt;/restriction>
25
 *   &lt;/complexContent>
26
 * &lt;/complexType>
27
 * </pre>
28
 *
29
 *
30
 */
31
@XmlAccessorType(XmlAccessType.FIELD)
32
@XmlType(name = "Item", propOrder = {
33
    "itemID",
34
    "itemUUID",
35
    "itemName"
36
})
37
public class Item {
38
39
 
40
    protected JAXBElement<String> itemID;
41
    @XmlElementRef(name = "itemUUID", namespace = "urn:aewebservices71", type = JAXBElement.class)
42
    protected JAXBElement<String> itemUUID;
43
    @XmlElementRef(name = "itemName", namespace = "urn:aewebservices71", type = JAXBElement.class)
44
    protected JAXBElement<String> itemName;
45
46
 
47
     * Gets the value of the itemID property.
48
     *
49
     * @return
50
     *     possible object is
51
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
52
     *
53
     */
54
    public JAXBElement<String> getItemID() {
55
        return itemID;
56
    }
57
58
 
59
     * Sets the value of the itemID property.
60
     *
61
     * @param value
62
     *     allowed object is
63
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
64
     *
65
     */
66
    public void setItemID(JAXBElement<String> value) {
67
        this.itemID = ((JAXBElement<String> ) value);
68
    }
69
70
 
71
     * Gets the value of the itemUUID property.
72
     *
73
     * @return
74
     *     possible object is
75
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
76
     *
77
     */
78
    public JAXBElement<String> getItemUUID() {
79
        return itemUUID;
80
    }
81
82
 
83
     * Sets the value of the itemUUID property.
84
     *
85
     * @param value
86
     *     allowed object is
87
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
88
     *
89
     */
90
    public void setItemUUID(JAXBElement<String> value) {
91
        this.itemUUID = ((JAXBElement<String> ) value);
92
    }
93
94
 
95
     * Gets the value of the itemName property.
96
     *
97
     * @return
98
     *     possible object is
99
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
100
     *
101
     */
102
    public JAXBElement<String> getItemName() {
103
        return itemName;
104
    }
105
106
 
107
     * Sets the value of the itemName property.
108
     *
109
     * @param value
110
     *     allowed object is
111
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
112
     *
113
     */
114
    public void setItemName(JAXBElement<String> value) {
115
        this.itemName = ((JAXBElement<String> ) value);
116
    }
117
118
 
119