Download this file

AnalyticsParameters.java    434 lines (426 with data), 15.4 kB

  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
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
package eu.alfred.event_manager.model;
import java.util.List;
import eu.alfred.personalization_manager.model.*;
public class AnalyticsParameters {
private Integer page;
private Integer page_size;
private Boolean olap;
private Integer age_from;
private Integer age_to;
private Gender gender;
private List<MaritalStatus> marital_status;
private List<MobilityLevel> mobility_level;
private List<String> postal_code;
private String address;
private List<String> city;
private List<String> country;
private List<String> country_code;
private List<String> organiser;
private Integer min_participant_count;
private Integer max_participant_count;
public Integer getPage() {
return page;
}
public void setPage(Integer page) {
this.page = page;
}
public Integer getPage_size() {
return page_size;
}
public void setPage_size(Integer page_size) {
this.page_size = page_size;
}
public Boolean getOlap() {
return olap;
}
public void setOlap(Boolean olap) {
this.olap = olap;
}
private Integer age_min_average_age;
private Integer age_max_average_age;
private Integer gender_min_percent_male;
private Integer gender_max_percent_male;
private Integer gender_min_percent_female;
private Integer gender_max_percent_female;
private Integer mobility_min_percent_wheelchair;
private Integer mobility_min_percent_rollator;
private Integer mobility_max_percent_rollator;
private Integer mobility_min_percent_cane;
private Integer mobility_max_percent_cane;
private Integer mobility_min_percent_healthy;
private Integer mobility_max_percent_healthy;
private Integer mobility_min_percent_fit;
private Integer mobility_max_percent_fit;
private Integer marital_min_percent_single;
private Integer marital_max_percent_single;
private Integer marital_min_percent_married;
private Integer marital_max_percent_married;
private Integer marital_min_percent_widow_widower;
private Integer marital_max_percent_widow_widower;
private Integer education_min_percent_bachelor;
private Integer education_max_percent_bachelor;
private Integer education_min_percent_doctoral;
private Integer education_max_percent_doctoral;
private Integer education_min_percent_lo_secondary;
private Integer education_max_percent_lo_secondary;
private Integer education_min_percent_master;
private Integer education_max_percent_master;
private Integer education_min_percent_post_secondary;
private Integer education_max_percent_post_secondary;
private Integer education_min_percent_primary;
private Integer education_max_percent_primary;
private Integer education_min_percent_tertiary;
private Integer education_max_percent_tertiary;
private Integer education_min_percent_up_secondary;
private Integer education_max_percent_up_secondary;
private Long min_start_date;
private Long max_start_date;
private List<String> participants;
private List<String> tags;
private List<String> categories;
public Integer getAge_from() {
return age_from;
}
public void setAge_from(Integer age_from) {
this.age_from = age_from;
}
public Integer getAge_to() {
return age_to;
}
public void setAge_to(Integer age_to) {
this.age_to = age_to;
}
public Gender getGender() {
return gender;
}
public void setGender(Gender gender) {
this.gender = gender;
}
public List<MaritalStatus> getMarital_status() {
return marital_status;
}
public void setMarital_status(List<MaritalStatus> marital_status) {
this.marital_status = marital_status;
}
public List<MobilityLevel> getMobility_level() {
return mobility_level;
}
public void setMobility_level(List<MobilityLevel> mobility_level) {
this.mobility_level = mobility_level;
}
public List<String> getPostal_code() {
return postal_code;
}
public void setPostal_code(List<String> postal_code) {
this.postal_code = postal_code;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public List<String> getCity() {
return city;
}
public void setCity(List<String> city) {
this.city = city;
}
public List<String> getCountry() {
return country;
}
public void setCountry(List<String> country) {
this.country = country;
}
public List<String> getCountry_code() {
return country_code;
}
public void setCountry_code(List<String> country_code) {
this.country_code = country_code;
}
public List<String> getOrganiser() {
return organiser;
}
public void setOrganiser(List<String> organiser) {
this.organiser = organiser;
}
public Integer getMin_participant_count() {
return min_participant_count;
}
public void setMin_participant_count(Integer min_participant_count) {
this.min_participant_count = min_participant_count;
}
public Integer getMax_participant_count() {
return max_participant_count;
}
public void setMax_participant_count(Integer max_participant_count) {
this.max_participant_count = max_participant_count;
}
public Integer getAge_min_average_age() {
return age_min_average_age;
}
public void setAge_min_average_age(Integer age_min_average_age) {
this.age_min_average_age = age_min_average_age;
}
public Integer getAge_max_average_age() {
return age_max_average_age;
}
public void setAge_max_average_age(Integer age_max_average_age) {
this.age_max_average_age = age_max_average_age;
}
public Integer getGender_min_percent_male() {
return gender_min_percent_male;
}
public void setGender_min_percent_male(Integer gender_min_percent_male) {
this.gender_min_percent_male = gender_min_percent_male;
}
public Integer getGender_max_percent_male() {
return gender_max_percent_male;
}
public void setGender_max_percent_male(Integer gender_max_percent_male) {
this.gender_max_percent_male = gender_max_percent_male;
}
public Integer getGender_min_percent_female() {
return gender_min_percent_female;
}
public void setGender_min_percent_female(Integer gender_min_percent_female) {
this.gender_min_percent_female = gender_min_percent_female;
}
public Integer getGender_max_percent_female() {
return gender_max_percent_female;
}
public void setGender_max_percent_female(Integer gender_max_percent_female) {
this.gender_max_percent_female = gender_max_percent_female;
}
public Integer getMobility_min_percent_wheelchair() {
return mobility_min_percent_wheelchair;
}
public void setMobility_min_percent_wheelchair(
Integer mobility_min_percent_wheelchair) {
this.mobility_min_percent_wheelchair = mobility_min_percent_wheelchair;
}
public Integer getMobility_min_percent_rollator() {
return mobility_min_percent_rollator;
}
public void setMobility_min_percent_rollator(Integer mobility_min_percent_rollator) {
this.mobility_min_percent_rollator = mobility_min_percent_rollator;
}
public Integer getMobility_max_percent_rollator() {
return mobility_max_percent_rollator;
}
public void setMobility_max_percent_rollator(Integer mobility_max_percent_rollator) {
this.mobility_max_percent_rollator = mobility_max_percent_rollator;
}
public Integer getMobility_min_percent_cane() {
return mobility_min_percent_cane;
}
public void setMobility_min_percent_cane(Integer mobility_min_percent_cane) {
this.mobility_min_percent_cane = mobility_min_percent_cane;
}
public Integer getMobility_max_percent_cane() {
return mobility_max_percent_cane;
}
public void setMobility_max_percent_cane(Integer mobility_max_percent_cane) {
this.mobility_max_percent_cane = mobility_max_percent_cane;
}
public Integer getMobility_min_percent_healthy() {
return mobility_min_percent_healthy;
}
public void setMobility_min_percent_healthy(Integer mobility_min_percent_healthy) {
this.mobility_min_percent_healthy = mobility_min_percent_healthy;
}
public Integer getMobility_max_percent_healthy() {
return mobility_max_percent_healthy;
}
public void setMobility_max_percent_healthy(Integer mobility_max_percent_healthy) {
this.mobility_max_percent_healthy = mobility_max_percent_healthy;
}
public Integer getMobility_min_percent_fit() {
return mobility_min_percent_fit;
}
public void setMobility_min_percent_fit(Integer mobility_min_percent_fit) {
this.mobility_min_percent_fit = mobility_min_percent_fit;
}
public Integer getMobility_max_percent_fit() {
return mobility_max_percent_fit;
}
public void setMobility_max_percent_fit(Integer mobility_max_percent_fit) {
this.mobility_max_percent_fit = mobility_max_percent_fit;
}
public Integer getMartial_min_percent_single() {
return marital_min_percent_single;
}
public void setMartial_min_percent_single(Integer martial_min_percent_single) {
this.marital_min_percent_single = martial_min_percent_single;
}
public Integer getMarital_min_percent_single() {
return marital_min_percent_single;
}
public void setMarital_min_percent_single(Integer marital_min_percent_single) {
this.marital_min_percent_single = marital_min_percent_single;
}
public Integer getMarital_max_percent_single() {
return marital_max_percent_single;
}
public void setMarital_max_percent_single(Integer marital_max_percent_single) {
this.marital_max_percent_single = marital_max_percent_single;
}
public Integer getMarital_min_percent_married() {
return marital_min_percent_married;
}
public void setMarital_min_percent_married(Integer marital_min_percent_married) {
this.marital_min_percent_married = marital_min_percent_married;
}
public Integer getMarital_max_percent_married() {
return marital_max_percent_married;
}
public void setMarital_max_percent_married(Integer marital_max_percent_married) {
this.marital_max_percent_married = marital_max_percent_married;
}
public Integer getMarital_min_percent_widow_widower() {
return marital_min_percent_widow_widower;
}
public void setMarital_min_percent_widow_widower(
Integer marital_min_percent_widow_widower) {
this.marital_min_percent_widow_widower = marital_min_percent_widow_widower;
}
public Integer getMarital_max_percent_widow_widower() {
return marital_max_percent_widow_widower;
}
public void setMarital_max_percent_widow_widower(
Integer marital_max_percent_widow_widower) {
this.marital_max_percent_widow_widower = marital_max_percent_widow_widower;
}
public Integer getEducation_min_percent_bachelor() {
return education_min_percent_bachelor;
}
public void setEducation_min_percent_bachelor(Integer education_min_percent_bachelor) {
this.education_min_percent_bachelor = education_min_percent_bachelor;
}
public Integer getEducation_max_percent_bachelor() {
return education_max_percent_bachelor;
}
public void setEducation_max_percent_bachelor(Integer education_max_percent_bachelor) {
this.education_max_percent_bachelor = education_max_percent_bachelor;
}
public Integer getEducation_min_percent_doctoral() {
return education_min_percent_doctoral;
}
public void setEducation_min_percent_doctoral(Integer education_min_percent_doctoral) {
this.education_min_percent_doctoral = education_min_percent_doctoral;
}
public Integer getEducation_max_percent_doctoral() {
return education_max_percent_doctoral;
}
public void setEducation_max_percent_doctoral(Integer education_max_percent_doctoral) {
this.education_max_percent_doctoral = education_max_percent_doctoral;
}
public Integer getEducation_min_percent_lo_secondary() {
return education_min_percent_lo_secondary;
}
public void setEducation_min_percent_lo_secondary(
Integer education_min_percent_lo_secondary) {
this.education_min_percent_lo_secondary = education_min_percent_lo_secondary;
}
public Integer getEducation_max_percent_lo_secondary() {
return education_max_percent_lo_secondary;
}
public void setEducation_max_percent_lo_secondary(
Integer education_max_percent_lo_secondary) {
this.education_max_percent_lo_secondary = education_max_percent_lo_secondary;
}
public Integer getEducation_min_percent_master() {
return education_min_percent_master;
}
public void setEducation_min_percent_master(Integer education_min_percent_master) {
this.education_min_percent_master = education_min_percent_master;
}
public Integer getEducation_max_percent_master() {
return education_max_percent_master;
}
public void setEducation_max_percent_master(Integer education_max_percent_master) {
this.education_max_percent_master = education_max_percent_master;
}
public Integer getEducation_min_percent_post_secondary() {
return education_min_percent_post_secondary;
}
public void setEducation_min_percent_post_secondary(
Integer education_min_percent_post_secondary) {
this.education_min_percent_post_secondary = education_min_percent_post_secondary;
}
public Integer getEducation_max_percent_post_secondary() {
return education_max_percent_post_secondary;
}
public void setEducation_max_percent_post_secondary(
Integer education_max_percent_post_secondary) {
this.education_max_percent_post_secondary = education_max_percent_post_secondary;
}
public Integer getEducation_min_percent_primary() {
return education_min_percent_primary;
}
public void setEducation_min_percent_primary(Integer education_min_percent_primary) {
this.education_min_percent_primary = education_min_percent_primary;
}
public Integer getEducation_max_percent_primary() {
return education_max_percent_primary;
}
public void setEducation_max_percent_primary(Integer education_max_percent_primary) {
this.education_max_percent_primary = education_max_percent_primary;
}
public Integer getEducation_min_percent_tertiary() {
return education_min_percent_tertiary;
}
public void setEducation_min_percent_tertiary(Integer education_min_percent_tertiary) {
this.education_min_percent_tertiary = education_min_percent_tertiary;
}
public Integer getEducation_max_percent_tertiary() {
return education_max_percent_tertiary;
}
public void setEducation_max_percent_tertiary(Integer education_max_percent_tertiary) {
this.education_max_percent_tertiary = education_max_percent_tertiary;
}
public Integer getEducation_min_percent_up_secondary() {
return education_min_percent_up_secondary;
}
public void setEducation_min_percent_up_secondary(
Integer education_min_percent_up_secondary) {
this.education_min_percent_up_secondary = education_min_percent_up_secondary;
}
public Integer getEducation_max_percent_up_secondary() {
return education_max_percent_up_secondary;
}
public void setEducation_max_percent_up_secondary(
Integer education_max_percent_up_secondary) {
this.education_max_percent_up_secondary = education_max_percent_up_secondary;
}
public Long getMin_start_date() {
return min_start_date;
}
public void setMin_start_date(Long min_start_date) {
this.min_start_date = min_start_date;
}
public Long getMax_start_date() {
return max_start_date;
}
public void setMax_start_date(Long max_start_date) {
this.max_start_date = max_start_date;
}
public List<String> getParticipants() {
return participants;
}
public void setParticipants(List<String> participants) {
this.participants = participants;
}
public List<String> getTags() {
return tags;
}
public void setTags(List<String> tags) {
this.tags = tags;
}
public List<String> getCategories() {
return categories;
}
public void setCategories(List<String> categories) {
this.categories = categories;
}
}