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.XmlAccessorType;
5
import javax.xml.bind.annotation.XmlElement;
6
import javax.xml.bind.annotation.XmlRootElement;
7
import javax.xml.bind.annotation.XmlType;
8
9
 
10
 
11
 * <p>Java class for anonymous complex type.
12
 *
13
 * <p>The following schema fragment specifies the expected content contained within this class.
14
 *
15
 * <pre>
16
 * &lt;complexType>
17
 *   &lt;complexContent>
18
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
19
 *       &lt;sequence>
20
 *         &lt;element name="return" type="{urn:aewebservices71}GetReportsResult"/>
21
 *       &lt;/sequence>
22
 *     &lt;/restriction>
23
 *   &lt;/complexContent>
24
 * &lt;/complexType>
25
 * </pre>
26
 *
27
 *
28
 */
29
@XmlAccessorType(XmlAccessType.FIELD)
30
@XmlType(name = "", propOrder = {
31
    "_return"
32
})
33
@XmlRootElement(name = "GetReportsResponse")
34
public class GetReportsResponse {
35
36
 
37
    protected GetReportsResult _return;
38
39
 
40
     * Gets the value of the return property.
41
     *
42
     * @return
43
     *     possible object is
44
     *     {@link GetReportsResult }
45
     *
46
     */
47
    public GetReportsResult getReturn() {
48
        return _return;
49
    }
50
51
 
52
     * Sets the value of the return property.
53
     *
54
     * @param value
55
     *     allowed object is
56
     *     {@link GetReportsResult }
57
     *
58
     */
59
    public void setReturn(GetReportsResult value) {
60
        this._return = value;
61
    }
62
63
 
64