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.annotation.XmlAccessType;
6
import javax.xml.bind.annotation.XmlAccessorType;
7
import javax.xml.bind.annotation.XmlElement;
8
import javax.xml.bind.annotation.XmlType;
9
10
 
11
 
12
 * <p>Java class for GetReportsResult complex type.
13
 *
14
 * <p>The following schema fragment specifies the expected content contained within this class.
15
 *
16
 * <pre>
17
 * &lt;complexType name="GetReportsResult">
18
 *   &lt;complexContent>
19
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20
 *       &lt;sequence>
21
 *         &lt;element name="queryRange" type="{urn:aewebservices71}QueryRange"/>
22
 *         &lt;element name="report" type="{urn:aewebservices71}ReportInfo" maxOccurs="unbounded" 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 = "GetReportsResult", propOrder = {
33
    "queryRange",
34
    "report"
35
})
36
public class GetReportsResult {
37
38
 
39
    protected QueryRange queryRange;
40
    protected List<ReportInfo> report;
41
42
 
43
     * Gets the value of the queryRange property.
44
     *
45
     * @return
46
     *     possible object is
47
     *     {@link QueryRange }
48
     *
49
     */
50
    public QueryRange getQueryRange() {
51
        return queryRange;
52
    }
53
54
 
55
     * Sets the value of the queryRange property.
56
     *
57
     * @param value
58
     *     allowed object is
59
     *     {@link QueryRange }
60
     *
61
     */
62
    public void setQueryRange(QueryRange value) {
63
        this.queryRange = value;
64
    }
65
66
 
67
     * Gets the value of the report property.
68
     *
69
     * <p>
70
     * This accessor method returns a reference to the live list,
71
     * not a snapshot. Therefore any modification you make to the
72
     * returned list will be present inside the JAXB object.
73
     * This is why there is not a <CODE>set</CODE> method for the report property.
74
     *
75
     * <p>
76
     * For example, to add a new item, do as follows:
77
     * <pre>
78
     *    getReport().add(newItem);
79
     * </pre>
80
     *
81
     *
82
     * <p>
83
     * Objects of the following type(s) are allowed in the list
84
     * {@link ReportInfo }
85
     *
86
     *
87
     */
88
    public List<ReportInfo> getReport() {
89
        if (report == null) {
90
            report = new ArrayList<ReportInfo>();
91
        }
92
        return this.report;
93
    }
94
95
 
96