1
2 package fr.paris.lutece.plugins.eudonetbp.event25;
3
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlRootElement;
7 import javax.xml.bind.annotation.XmlType;
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31 @XmlAccessorType(XmlAccessType.FIELD)
32 @XmlType(name = "", propOrder = {
33 "nFilterId",
34 "pageNumber",
35 "token"
36 })
37 @XmlRootElement(name = "SearchByFilterId")
38 public class SearchByFilterId {
39
40 protected int nFilterId;
41 protected int pageNumber;
42 protected String token;
43
44
45
46
47
48 public int getNFilterId() {
49 return nFilterId;
50 }
51
52
53
54
55
56 public void setNFilterId(int value) {
57 this.nFilterId = value;
58 }
59
60
61
62
63
64 public int getPageNumber() {
65 return pageNumber;
66 }
67
68
69
70
71
72 public void setPageNumber(int value) {
73 this.pageNumber = value;
74 }
75
76
77
78
79
80
81
82
83
84 public String getToken() {
85 return token;
86 }
87
88
89
90
91
92
93
94
95
96 public void setToken(String value) {
97 this.token = value;
98 }
99
100 }