Switch to unified view

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