View Javadoc
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   * <p>Java class for anonymous complex type.
12   * 
13   * <p>The following schema fragment specifies the expected content contained within this class.
14   * 
15   * <pre>
16   * &lt;complexType>
17   *   &lt;complexContent>
18   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
19   *       &lt;sequence>
20   *         &lt;element name="nFilterId" type="{http://www.w3.org/2001/XMLSchema}int"/>
21   *         &lt;element name="pageNumber" type="{http://www.w3.org/2001/XMLSchema}int"/>
22   *         &lt;element name="token" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
23   *       &lt;/sequence>
24   *     &lt;/restriction>
25   *   &lt;/complexContent>
26   * &lt;/complexType>
27   * </pre>
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       * Gets the value of the nFilterId property.
46       * 
47       */
48      public int getNFilterId() {
49          return nFilterId;
50      }
51  
52      /**
53       * Sets the value of the nFilterId property.
54       * 
55       */
56      public void setNFilterId(int value) {
57          this.nFilterId = value;
58      }
59  
60      /**
61       * Gets the value of the pageNumber property.
62       * 
63       */
64      public int getPageNumber() {
65          return pageNumber;
66      }
67  
68      /**
69       * Sets the value of the pageNumber property.
70       * 
71       */
72      public void setPageNumber(int value) {
73          this.pageNumber = value;
74      }
75  
76      /**
77       * Gets the value of the token property.
78       * 
79       * @return
80       *     possible object is
81       *     {@link String }
82       *     
83       */
84      public String getToken() {
85          return token;
86      }
87  
88      /**
89       * Sets the value of the token property.
90       * 
91       * @param value
92       *     allowed object is
93       *     {@link String }
94       *     
95       */
96      public void setToken(String value) {
97          this.token = value;
98      }
99  
100 }