1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34 package fr.paris.lutece.plugins.openagenda.api.mapping.v2;
35
36 import java.util.Collections;
37 import java.util.List;
38
39 import com.fasterxml.jackson.annotation.JsonProperty;
40
41
42
43
44
45
46 public class EventData
47 {
48
49 @JsonProperty( "uid" )
50 private int _nUid;
51
52 @JsonProperty( "title" )
53 private Multilingue _title;
54
55
56 @JsonProperty( "description" )
57 private Multilingue _description;
58
59 @JsonProperty( "longDescription" )
60 private Multilingue _longDescription;
61
62 @JsonProperty( "conditions" )
63 private Multilingue _conditions;
64
65 @JsonProperty( "keywords" )
66 private Keywords _keywords;
67
68 @JsonProperty( "dateRange" )
69 private Multilingue _dateRange;
70
71 @JsonProperty( "image" )
72 private Image _image;
73
74 @JsonProperty( "imageCredits" )
75 private String _strImageCredits;
76
77 @JsonProperty( "registration" )
78 private List<Registration> _listRegistration = Collections.emptyList( );
79
80 @JsonProperty( "accessibility" )
81 private Accessibility _accessibility;
82
83 @JsonProperty( "timings" )
84 private List<Timings> _listTimings = Collections.emptyList( );
85
86 @JsonProperty( "age" )
87 private Age _age;
88
89 @JsonProperty( "locationUid" )
90 private int _nLocationUid;
91
92 @JsonProperty( "attendanceMode" )
93 private int _nAttendanceMode;
94
95 @JsonProperty( "onlineAccessLink" )
96 private String _strOnlineAccessLink;
97
98 @JsonProperty( "links" )
99 private List<Links> _listLinks = Collections.emptyList( );
100
101 @JsonProperty( "timezone" )
102 private String _strTimezone;
103
104 @JsonProperty( "state" )
105 private int _nState;
106
107 @JsonProperty( "createdAt" )
108 private String _strCreatedAt;
109
110 @JsonProperty( "updatedAt" )
111 private String _strUpdatedAt;
112
113 @JsonProperty( "location" )
114 private LocationData _location;
115
116 @JsonProperty( "slug" )
117 private String _strSlug;
118
119 @JsonProperty( "originAgenda" )
120 private AgendaData _originAgenda;
121
122
123
124
125 public int getUid( )
126 {
127 return _nUid;
128 }
129
130
131
132
133
134 public void setUid( int nUid )
135 {
136 this._nUid = nUid;
137 }
138
139
140
141
142 public Multilingue getTitle( )
143 {
144 return _title;
145 }
146
147
148
149
150
151 public void setTitle( Multilingue title )
152 {
153 this._title = title;
154 }
155
156
157
158
159 public Multilingue getDescription( )
160 {
161 return _description;
162 }
163
164
165
166
167
168 public void setDescription( Multilingue description )
169 {
170 this._description = description;
171 }
172
173
174
175
176 public Multilingue getLongDescription( )
177 {
178 return _longDescription;
179 }
180
181
182
183
184
185 public void setLongDescription( Multilingue longDescription )
186 {
187 this._longDescription = longDescription;
188 }
189
190
191
192
193 public Multilingue getConditions( )
194 {
195 return _conditions;
196 }
197
198
199
200
201
202 public void setConditions( Multilingue conditions )
203 {
204 this._conditions = conditions;
205 }
206
207
208
209
210 public Keywords getKeywords( )
211 {
212 return _keywords;
213 }
214
215
216
217
218
219 public void setKeywords( Keywords keywords )
220 {
221 this._keywords = keywords;
222 }
223
224
225
226
227 public Multilingue getDateRange( )
228 {
229 return _dateRange;
230 }
231
232
233
234
235 public void setDateRange( Multilingue dateRange )
236 {
237 this._dateRange = dateRange;
238 }
239
240
241
242
243 public Image getImage( )
244 {
245 return _image;
246 }
247
248
249
250
251
252 public void setImage( Image image )
253 {
254 this._image = image;
255 }
256
257
258
259
260 public String getImageCredits( )
261 {
262 return _strImageCredits;
263 }
264
265
266
267
268
269 public void setImageCredits( String strImageCredits )
270 {
271 this._strImageCredits = strImageCredits;
272 }
273
274
275
276
277 public List<Registration> getRegistration( )
278 {
279 return Collections.unmodifiableList( _listRegistration );
280 }
281
282
283
284
285
286 public void setRegistration( List<Registration> listRegistration )
287 {
288 this._listRegistration = Collections.unmodifiableList( listRegistration );
289 }
290
291
292
293
294 public Accessibility getAccessibility( )
295 {
296 return _accessibility;
297 }
298
299
300
301
302
303 public void setAccessibility( Accessibility accessibility )
304 {
305 this._accessibility = accessibility;
306 }
307
308
309
310
311 public List<Timings> getTimings( )
312 {
313 return Collections.unmodifiableList( _listTimings );
314 }
315
316
317
318
319
320 public void setTimings( List<Timings> listTimings )
321 {
322 this._listTimings = Collections.unmodifiableList( listTimings );
323 }
324
325
326
327
328 public Age getAge( )
329 {
330 return _age;
331 }
332
333
334
335
336
337 public void setAge( Age age )
338 {
339 this._age = age;
340 }
341
342
343
344
345 public int getLocationUid( )
346 {
347 return _nLocationUid;
348 }
349
350
351
352
353
354 public void setLocationUid( int nLocationUid )
355 {
356 this._nLocationUid = nLocationUid;
357 }
358
359
360
361
362 public int getAttendanceMode( )
363 {
364 return _nAttendanceMode;
365 }
366
367
368
369
370
371 public void setAttendanceMode( int nAttendanceMode )
372 {
373 this._nAttendanceMode = nAttendanceMode;
374 }
375
376
377
378
379 public String getOnlineAccessLink( )
380 {
381 return _strOnlineAccessLink;
382 }
383
384
385
386
387
388 public void setOnlineAccessLink( String strOnlineAccessLink )
389 {
390 this._strOnlineAccessLink = strOnlineAccessLink;
391 }
392
393
394
395
396 public List<Links> getLinks( )
397 {
398 return Collections.unmodifiableList( _listLinks );
399 }
400
401
402
403
404
405 public void setLinks( List<Links> listLinks )
406 {
407 this._listLinks = Collections.unmodifiableList( listLinks );
408 }
409
410
411
412
413 public String getTimezone( )
414 {
415 return _strTimezone;
416 }
417
418
419
420
421
422 public void setTimezone( String strTimezone )
423 {
424 this._strTimezone = strTimezone;
425 }
426
427
428
429
430 public int getState( )
431 {
432 return _nState;
433 }
434
435
436
437
438
439 public void setState( int nState )
440 {
441 this._nState = nState;
442 }
443
444
445
446
447 public String getCreatedAt( )
448 {
449 return _strCreatedAt;
450 }
451
452
453
454
455
456 public void setCreatedAt( String strCreatedAt )
457 {
458 this._strCreatedAt = strCreatedAt;
459 }
460
461
462
463
464 public String getUpdatedAt( )
465 {
466 return _strUpdatedAt;
467 }
468
469
470
471
472
473 public void setUpdatedAt( String strUpdatedAt )
474 {
475 this._strUpdatedAt = strUpdatedAt;
476 }
477
478
479
480
481 public LocationData getLocation( )
482 {
483 return _location;
484 }
485
486
487
488
489
490 public void setLocation( LocationData location )
491 {
492 this._location = location;
493 }
494
495
496
497
498 public String getSlug( )
499 {
500 return _strSlug;
501 }
502
503
504
505
506
507 public void setSlug( String strSlug )
508 {
509 this._strSlug = strSlug;
510 }
511
512
513
514
515 public AgendaData getOriginAgenda( )
516 {
517 return _originAgenda;
518 }
519
520
521
522
523
524 public void setOriginAgenda( AgendaData originAgenda )
525 {
526 this._originAgenda = originAgenda;
527 }
528
529 }