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.XmlType;
10
11
 
12
 
13
 * <p>Java class for ReportResult complex type.
14
 *
15
 * <p>The following schema fragment specifies the expected content contained within this class.
16
 *
17
 * <pre>
18
 * &lt;complexType name="ReportResult">
19
 *   &lt;complexContent>
20
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21
 *       &lt;sequence>
22
 *         &lt;element name="itemURL" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
23
 *         &lt;element name="itemId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
24
 *         &lt;element name="itemName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
25
 *         &lt;element name="fieldValue" type="{urn:aewebservices71}ExtraValue" maxOccurs="unbounded" 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 = "ReportResult", propOrder = {
36
    "itemURL",
37
    "itemId",
38
    "itemName",
39
    "fieldValue"
40
})
41
public class ReportResult {
42
43
 
44
    protected JAXBElement<String> itemURL;
45
    @XmlElementRef(name = "itemId", namespace = "urn:aewebservices71", type = JAXBElement.class)
46
    protected JAXBElement<String> itemId;
47
    @XmlElementRef(name = "itemName", namespace = "urn:aewebservices71", type = JAXBElement.class)
48
    protected JAXBElement<String> itemName;
49
    protected List<ExtraValue> fieldValue;
50
51
 
52
     * Gets the value of the itemURL property.
53
     *
54
     * @return
55
     *     possible object is
56
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
57
     *
58
     */
59
    public JAXBElement<String> getItemURL() {
60
        return itemURL;
61
    }
62
63
 
64
     * Sets the value of the itemURL property.
65
     *
66
     * @param value
67
     *     allowed object is
68
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
69
     *
70
     */
71
    public void setItemURL(JAXBElement<String> value) {
72
        this.itemURL = ((JAXBElement<String> ) value);
73
    }
74
75
 
76
     * Gets the value of the itemId property.
77
     *
78
     * @return
79
     *     possible object is
80
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
81
     *
82
     */
83
    public JAXBElement<String> getItemId() {
84
        return itemId;
85
    }
86
87
 
88
     * Sets the value of the itemId property.
89
     *
90
     * @param value
91
     *     allowed object is
92
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
93
     *
94
     */
95
    public void setItemId(JAXBElement<String> value) {
96
        this.itemId = ((JAXBElement<String> ) value);
97
    }
98
99
 
100
     * Gets the value of the itemName property.
101
     *
102
     * @return
103
     *     possible object is
104
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
105
     *
106
     */
107
    public JAXBElement<String> getItemName() {
108
        return itemName;
109
    }
110
111
 
112
     * Sets the value of the itemName property.
113
     *
114
     * @param value
115
     *     allowed object is
116
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
117
     *
118
     */
119
    public void setItemName(JAXBElement<String> value) {
120
        this.itemName = ((JAXBElement<String> ) value);
121
    }
122
123
 
124
     * Gets the value of the fieldValue property.
125
     *
126
     * <p>
127
     * This accessor method returns a reference to the live list,
128
     * not a snapshot. Therefore any modification you make to the
129
     * returned list will be present inside the JAXB object.
130
     * This is why there is not a <CODE>set</CODE> method for the fieldValue property.
131
     *
132
     * <p>
133
     * For example, to add a new item, do as follows:
134
     * <pre>
135
     *    getFieldValue().add(newItem);
136
     * </pre>
137
     *
138
     *
139
     * <p>
140
     * Objects of the following type(s) are allowed in the list
141
     * {@link ExtraValue }
142
     *
143
     *
144
     */
145
    public List<ExtraValue> getFieldValue() {
146
        if (fieldValue == null) {
147
            fieldValue = new ArrayList<ExtraValue>();
148
        }
149
        return this.fieldValue;
150
    }
151
152
 
153