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
40 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "AuditLog", propOrder = {
42 "timestamp",
43 "username",
44 "clazz",
45 "method",
46 "memo",
47 "classification",
48 "ipaddress"
49 })
50 public class AuditLog
51 implements Serializable
52 {
53
54 private final static long serialVersionUID = 1L;
55 @XmlElement(name = "Timestamp", required = true)
56 @XmlSchemaType(name = "dateTime")
57 protected Calendar timestamp;
58 @XmlElement(required = true)
59 protected String username;
60 @XmlElement(name = "class", required = true)
61 protected String clazz;
62 @XmlElement(required = true)
63 protected String method;
64 @XmlElement(required = true)
65 protected String memo;
66 @XmlElement(required = true)
67 protected String classification;
68 @XmlElement(required = true)
69 protected String ipaddress;
70
71
72
73
74
75
76
77
78
79 public Calendar getTimestamp() {
80 return timestamp;
81 }
82
83
84
85
86
87
88
89
90
91 public void setTimestamp(Calendar value) {
92 this.timestamp = value;
93 }
94
95 public boolean isSetTimestamp() {
96 return (this.timestamp!= null);
97 }
98
99
100
101
102
103
104
105
106
107 public String getUsername() {
108 return username;
109 }
110
111
112
113
114
115
116
117
118
119 public void setUsername(String value) {
120 this.username = value;
121 }
122
123 public boolean isSetUsername() {
124 return (this.username!= null);
125 }
126
127
128
129
130
131
132
133
134
135 public String getClazz() {
136 return clazz;
137 }
138
139
140
141
142
143
144
145
146
147 public void setClazz(String value) {
148 this.clazz = value;
149 }
150
151 public boolean isSetClazz() {
152 return (this.clazz!= null);
153 }
154
155
156
157
158
159
160
161
162
163 public String getMethod() {
164 return method;
165 }
166
167
168
169
170
171
172
173
174
175 public void setMethod(String value) {
176 this.method = value;
177 }
178
179 public boolean isSetMethod() {
180 return (this.method!= null);
181 }
182
183
184
185
186
187
188
189
190
191 public String getMemo() {
192 return memo;
193 }
194
195
196
197
198
199
200
201
202
203 public void setMemo(String value) {
204 this.memo = value;
205 }
206
207 public boolean isSetMemo() {
208 return (this.memo!= null);
209 }
210
211
212
213
214
215
216
217
218
219 public String getClassification() {
220 return classification;
221 }
222
223
224
225
226
227
228
229
230
231 public void setClassification(String value) {
232 this.classification = value;
233 }
234
235 public boolean isSetClassification() {
236 return (this.classification!= null);
237 }
238
239
240
241
242
243
244
245
246
247 public String getIpaddress() {
248 return ipaddress;
249 }
250
251
252
253
254
255
256
257
258
259 public void setIpaddress(String value) {
260 this.ipaddress = value;
261 }
262
263 public boolean isSetIpaddress() {
264 return (this.ipaddress!= null);
265 }
266
267 }