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
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33 @XmlAccessorType(XmlAccessType.FIELD)
34 @XmlType(name = "DeleteReportResponseMsg", propOrder = {
35 "classification",
36 "message",
37 "success"
38 })
39 public class DeleteReportResponseMsg
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 message;
48 protected boolean success;
49
50
51
52
53
54
55
56
57
58 public SecurityWrapper getClassification() {
59 return classification;
60 }
61
62
63
64
65
66
67
68
69
70 public void setClassification(SecurityWrapper value) {
71 this.classification = value;
72 }
73
74 public boolean isSetClassification() {
75 return (this.classification!= null);
76 }
77
78
79
80
81
82
83
84
85
86 public String getMessage() {
87 return message;
88 }
89
90
91
92
93
94
95
96
97
98 public void setMessage(String value) {
99 this.message = value;
100 }
101
102 public boolean isSetMessage() {
103 return (this.message!= null);
104 }
105
106
107
108
109
110 public boolean isSuccess() {
111 return success;
112 }
113
114
115
116
117
118 public void setSuccess(boolean value) {
119 this.success = value;
120 }
121
122 public boolean isSetSuccess() {
123 return true;
124 }
125
126 }