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.XmlType;
9 import org.miloss.fgsms.services.interfaces.common.SecurityWrapper;
10
11
12 /**
13 * <p>Java class for GetReportResponseMsg complex type.
14 *
15 * <p>The following schema fragment specifies the expected content contained within this class.
16 *
17 * <pre>
18 * <complexType name="GetReportResponseMsg">
19 * <complexContent>
20 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 * <sequence>
22 * <element name="classification" type="{urn:org:miloss:fgsms:services:interfaces:common}SecurityWrapper"/>
23 * <element name="reportId" type="{http://www.w3.org/2001/XMLSchema}string"/>
24 * <element name="zippedReport" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
25 * </sequence>
26 * </restriction>
27 * </complexContent>
28 * </complexType>
29 * </pre>
30 *
31 *
32 */
33 @XmlAccessorType(XmlAccessType.FIELD)
34 @XmlType(name = "GetReportResponseMsg", propOrder = {
35 "classification",
36 "reportId",
37 "zippedReport"
38 })
39 public class GetReportResponseMsg
40 implements Serializable
41 {
42
43 private final static long serialVersionUID = 1L;
44 @XmlElement(required = true, nillable = true)
45 protected SecurityWrapper classification;
46 @XmlElement(required = true)
47 protected String reportId;
48 @XmlElement(required = true)
49 protected byte[] zippedReport;
50
51 /**
52 * Gets the value of the classification property.
53 *
54 * @return
55 * possible object is
56 * {@link SecurityWrapper }
57 *
58 */
59 public SecurityWrapper getClassification() {
60 return classification;
61 }
62
63 /**
64 * Sets the value of the classification property.
65 *
66 * @param value
67 * allowed object is
68 * {@link SecurityWrapper }
69 *
70 */
71 public void setClassification(SecurityWrapper value) {
72 this.classification = value;
73 }
74
75 public boolean isSetClassification() {
76 return (this.classification!= null);
77 }
78
79 /**
80 * Gets the value of the reportId property.
81 *
82 * @return
83 * possible object is
84 * {@link String }
85 *
86 */
87 public String getReportId() {
88 return reportId;
89 }
90
91 /**
92 * Sets the value of the reportId property.
93 *
94 * @param value
95 * allowed object is
96 * {@link String }
97 *
98 */
99 public void setReportId(String value) {
100 this.reportId = value;
101 }
102
103 public boolean isSetReportId() {
104 return (this.reportId!= null);
105 }
106
107 /**
108 * Gets the value of the zippedReport property.
109 *
110 * @return
111 * possible object is
112 * byte[]
113 */
114 public byte[] getZippedReport() {
115 return zippedReport;
116 }
117
118 /**
119 * Sets the value of the zippedReport property.
120 *
121 * @param value
122 * allowed object is
123 * byte[]
124 */
125 public void setZippedReport(byte[] value) {
126 this.zippedReport = value;
127 }
128
129 public boolean isSetZippedReport() {
130 return (this.zippedReport!= null);
131 }
132
133 }