1
2 package org.miloss.fgsms.services.interfaces.dataaccessservice;
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 * GetMessageTransactionLog Response
15 *
16 *
17 * <p>Java class for GetMessageTransactionLogResponseMsg complex type.
18 *
19 * <p>The following schema fragment specifies the expected content contained within this class.
20 *
21 * <pre>
22 * <complexType name="GetMessageTransactionLogResponseMsg">
23 * <complexContent>
24 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
25 * <sequence>
26 * <element name="classification" type="{urn:org:miloss:fgsms:services:interfaces:common}SecurityWrapper"/>
27 * <element name="IsFault" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
28 * <element name="RequestMessage" type="{http://www.w3.org/2001/XMLSchema}string"/>
29 * <element name="ResponseMessage" type="{http://www.w3.org/2001/XMLSchema}string"/>
30 * <element name="ResponseTime" type="{http://www.w3.org/2001/XMLSchema}long"/>
31 * </sequence>
32 * </restriction>
33 * </complexContent>
34 * </complexType>
35 * </pre>
36 *
37 *
38 */
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "GetMessageTransactionLogResponseMsg", propOrder = {
41 "classification",
42 "isFault",
43 "requestMessage",
44 "responseMessage",
45 "responseTime"
46 })
47 public class GetMessageTransactionLogResponseMsg
48 implements Serializable
49 {
50
51 private final static long serialVersionUID = 1L;
52 @XmlElement(required = true, nillable = true)
53 protected SecurityWrapper classification;
54 @XmlElement(name = "IsFault")
55 protected boolean isFault;
56 @XmlElement(name = "RequestMessage", required = true, nillable = true)
57 protected String requestMessage;
58 @XmlElement(name = "ResponseMessage", required = true, nillable = true)
59 protected String responseMessage;
60 @XmlElement(name = "ResponseTime")
61 protected long responseTime;
62
63 /**
64 * Gets the value of the classification property.
65 *
66 * @return
67 * possible object is
68 * {@link SecurityWrapper }
69 *
70 */
71 public SecurityWrapper getClassification() {
72 return classification;
73 }
74
75 /**
76 * Sets the value of the classification property.
77 *
78 * @param value
79 * allowed object is
80 * {@link SecurityWrapper }
81 *
82 */
83 public void setClassification(SecurityWrapper value) {
84 this.classification = value;
85 }
86
87 public boolean isSetClassification() {
88 return (this.classification!= null);
89 }
90
91 /**
92 * Gets the value of the isFault property.
93 *
94 */
95 public boolean isIsFault() {
96 return isFault;
97 }
98
99 /**
100 * Sets the value of the isFault property.
101 *
102 */
103 public void setIsFault(boolean value) {
104 this.isFault = value;
105 }
106
107 public boolean isSetIsFault() {
108 return true;
109 }
110
111 /**
112 * Gets the value of the requestMessage property.
113 *
114 * @return
115 * possible object is
116 * {@link String }
117 *
118 */
119 public String getRequestMessage() {
120 return requestMessage;
121 }
122
123 /**
124 * Sets the value of the requestMessage property.
125 *
126 * @param value
127 * allowed object is
128 * {@link String }
129 *
130 */
131 public void setRequestMessage(String value) {
132 this.requestMessage = value;
133 }
134
135 public boolean isSetRequestMessage() {
136 return (this.requestMessage!= null);
137 }
138
139 /**
140 * Gets the value of the responseMessage property.
141 *
142 * @return
143 * possible object is
144 * {@link String }
145 *
146 */
147 public String getResponseMessage() {
148 return responseMessage;
149 }
150
151 /**
152 * Sets the value of the responseMessage property.
153 *
154 * @param value
155 * allowed object is
156 * {@link String }
157 *
158 */
159 public void setResponseMessage(String value) {
160 this.responseMessage = value;
161 }
162
163 public boolean isSetResponseMessage() {
164 return (this.responseMessage!= null);
165 }
166
167 /**
168 * Gets the value of the responseTime property.
169 *
170 */
171 public long getResponseTime() {
172 return responseTime;
173 }
174
175 /**
176 * Sets the value of the responseTime property.
177 *
178 */
179 public void setResponseTime(long value) {
180 this.responseTime = value;
181 }
182
183 public boolean isSetResponseTime() {
184 return true;
185 }
186
187 }