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 RunReportResult complex type.
13
 *
14
 * <p>The following schema fragment specifies the expected content contained within this class.
15
 *
16
 * <pre>
17
 * &lt;complexType name="RunReportResult">
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="reportInfo" type="{urn:aewebservices71}ReportInfo"/>
23
 *         &lt;element name="reportDefinition" type="{urn:aewebservices71}ReportDefinition"/>
24
 *         &lt;element name="result" type="{urn:aewebservices71}ReportResult" 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 = "RunReportResult", propOrder = {
35
    "queryRange",
36
    "reportInfo",
37
    "reportDefinition",
38
    "result"
39
})
40
public class RunReportResult {
41
42
 
43
    protected QueryRange queryRange;
44
    @XmlElement(required = true)
45
    protected ReportInfo reportInfo;
46
    @XmlElement(required = true)
47
    protected ReportDefinition reportDefinition;
48
    protected List<ReportResult> result;
49
50
 
51
     * Gets the value of the queryRange property.
52
     *
53
     * @return
54
     *     possible object is
55
     *     {@link QueryRange }
56
     *
57
     */
58
    public QueryRange getQueryRange() {
59
        return queryRange;
60
    }
61
62
 
63
     * Sets the value of the queryRange property.
64
     *
65
     * @param value
66
     *     allowed object is
67
     *     {@link QueryRange }
68
     *
69
     */
70
    public void setQueryRange(QueryRange value) {
71
        this.queryRange = value;
72
    }
73
74
 
75
     * Gets the value of the reportInfo property.
76
     *
77
     * @return
78
     *     possible object is
79
     *     {@link ReportInfo }
80
     *
81
     */
82
    public ReportInfo getReportInfo() {
83
        return reportInfo;
84
    }
85
86
 
87
     * Sets the value of the reportInfo property.
88
     *
89
     * @param value
90
     *     allowed object is
91
     *     {@link ReportInfo }
92
     *
93
     */
94
    public void setReportInfo(ReportInfo value) {
95
        this.reportInfo = value;
96
    }
97
98
 
99
     * Gets the value of the reportDefinition property.
100
     *
101
     * @return
102
     *     possible object is
103
     *     {@link ReportDefinition }
104
     *
105
     */
106
    public ReportDefinition getReportDefinition() {
107
        return reportDefinition;
108
    }
109
110
 
111
     * Sets the value of the reportDefinition property.
112
     *
113
     * @param value
114
     *     allowed object is
115
     *     {@link ReportDefinition }
116
     *
117
     */
118
    public void setReportDefinition(ReportDefinition value) {
119
        this.reportDefinition = value;
120
    }
121
122
 
123
     * Gets the value of the result property.
124
     *
125
     * <p>
126
     * This accessor method returns a reference to the live list,
127
     * not a snapshot. Therefore any modification you make to the
128
     * returned list will be present inside the JAXB object.
129
     * This is why there is not a <CODE>set</CODE> method for the result property.
130
     *
131
     * <p>
132
     * For example, to add a new item, do as follows:
133
     * <pre>
134
     *    getResult().add(newItem);
135
     * </pre>
136
     *
137
     *
138
     * <p>
139
     * Objects of the following type(s) are allowed in the list
140
     * {@link ReportResult }
141
     *
142
     *
143
     */
144
    public List<ReportResult> getResult() {
145
        if (result == null) {
146
            result = new ArrayList<ReportResult>();
147
        }
148
        return this.result;
149
    }
150
151
 
152