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