1
2 package org.miloss.fgsms.services.interfaces.automatedreportingservice;
3
4 import java.io.Serializable;
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.XmlRootElement;
9 import javax.xml.bind.annotation.XmlType;
10
11
12 /**
13 * <p>Java class for anonymous complex type.
14 *
15 * <p>The following schema fragment specifies the expected content contained within this class.
16 *
17 * <pre>
18 * <complexType>
19 * <complexContent>
20 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 * <sequence>
22 * <element name="response" type="{urn:org:miloss:fgsms:services:interfaces:automatedReportingService}GetReportResponseMsg"/>
23 * </sequence>
24 * </restriction>
25 * </complexContent>
26 * </complexType>
27 * </pre>
28 *
29 *
30 */
31 @XmlAccessorType(XmlAccessType.FIELD)
32 @XmlType(name = "", propOrder = {
33 "response"
34 })
35 @XmlRootElement(name = "GetReportResponse")
36 public class GetReportResponse
37 implements Serializable
38 {
39
40 private final static long serialVersionUID = 1L;
41 @XmlElement(required = true)
42 protected GetReportResponseMsg response;
43
44 /**
45 * Gets the value of the response property.
46 *
47 * @return
48 * possible object is
49 * {@link GetReportResponseMsg }
50 *
51 */
52 public GetReportResponseMsg getResponse() {
53 return response;
54 }
55
56 /**
57 * Sets the value of the response property.
58 *
59 * @param value
60 * allowed object is
61 * {@link GetReportResponseMsg }
62 *
63 */
64 public void setResponse(GetReportResponseMsg value) {
65 this.response = value;
66 }
67
68 public boolean isSetResponse() {
69 return (this.response!= null);
70 }
71
72 }