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.XmlSchemaType;
9 import javax.xml.bind.annotation.XmlType;
10 import java.util.Calendar;
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "ThreadTime", propOrder = {
41 "uri",
42 "action",
43 "success",
44 "transactionid",
45 "timestamp",
46 "responsetimems"
47 })
48 public class ThreadTime
49 implements Serializable
50 {
51
52 private final static long serialVersionUID = 1L;
53 @XmlElement(required = true)
54 protected String uri;
55 @XmlElement(required = true)
56 protected String action;
57 protected boolean success;
58 @XmlElement(required = true)
59 protected String transactionid;
60 @XmlElement(required = true)
61 @XmlSchemaType(name = "dateTime")
62 protected Calendar timestamp;
63 protected long responsetimems;
64
65
66
67
68
69
70
71
72
73 public String getUri() {
74 return uri;
75 }
76
77
78
79
80
81
82
83
84
85 public void setUri(String value) {
86 this.uri = value;
87 }
88
89 public boolean isSetUri() {
90 return (this.uri!= null);
91 }
92
93
94
95
96
97
98
99
100
101 public String getAction() {
102 return action;
103 }
104
105
106
107
108
109
110
111
112
113 public void setAction(String value) {
114 this.action = value;
115 }
116
117 public boolean isSetAction() {
118 return (this.action!= null);
119 }
120
121
122
123
124
125 public boolean isSuccess() {
126 return success;
127 }
128
129
130
131
132
133 public void setSuccess(boolean value) {
134 this.success = value;
135 }
136
137 public boolean isSetSuccess() {
138 return true;
139 }
140
141
142
143
144
145
146
147
148
149 public String getTransactionid() {
150 return transactionid;
151 }
152
153
154
155
156
157
158
159
160
161 public void setTransactionid(String value) {
162 this.transactionid = value;
163 }
164
165 public boolean isSetTransactionid() {
166 return (this.transactionid!= null);
167 }
168
169
170
171
172
173
174
175
176
177 public Calendar getTimestamp() {
178 return timestamp;
179 }
180
181
182
183
184
185
186
187
188
189 public void setTimestamp(Calendar value) {
190 this.timestamp = value;
191 }
192
193 public boolean isSetTimestamp() {
194 return (this.timestamp!= null);
195 }
196
197
198
199
200
201 public long getResponsetimems() {
202 return responsetimems;
203 }
204
205
206
207
208
209 public void setResponsetimems(long value) {
210 this.responsetimems = value;
211 }
212
213 public boolean isSetResponsetimems() {
214 return true;
215 }
216
217 }