View Javadoc
1   /*
2    * Copyright (c) 2002-2017, Mairie de Paris
3    * All rights reserved.
4    *
5    * Redistribution and use in source and binary forms, with or without
6    * modification, are permitted provided that the following conditions
7    * are met:
8    *
9    *  1. Redistributions of source code must retain the above copyright notice
10   *     and the following disclaimer.
11   *
12   *  2. Redistributions in binary form must reproduce the above copyright notice
13   *     and the following disclaimer in the documentation and/or other materials
14   *     provided with the distribution.
15   *
16   *  3. Neither the name of 'Mairie de Paris' nor 'Lutece' nor the names of its
17   *     contributors may be used to endorse or promote products derived from
18   *     this software without specific prior written permission.
19   *
20   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21   * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22   * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23   * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
24   * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25   * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26   * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27   * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28   * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30   * POSSIBILITY OF SUCH DAMAGE.
31   *
32   * License 1.0
33   */
34  package fr.paris.lutece.plugins.elasticdata.modules.dansmarue.business;
35  
36  import java.util.List;
37  
38  import fr.paris.lutece.plugins.elasticdata.business.AbstractDataObject;
39  
40  /**
41   * FdtDataObject
42   */
43  public class FdtDataObject extends AbstractDataObject
44  {
45  
46      // Variables declarations
47      private long          _nIdFdt;
48      private String        _strNom;
49      private String        _strCreateur;
50      private String        _strDateCreation;
51      private String        _strDateModification;
52      private String        _strDirection;
53      private String        _strEntite;
54      private List<String>  _listSignalementNumeros;
55      private List<Integer> _listSignalementIds;
56      private int           _nNbCosultation;
57  
58      public long getIdFdt( )
59      {
60          return _nIdFdt;
61      }
62  
63      public String getNom( )
64      {
65          return _strNom;
66      }
67  
68      public String getCreateur( )
69      {
70          return _strCreateur;
71      }
72  
73      public String getDateCreation( )
74      {
75          return _strDateCreation;
76      }
77  
78      public String getDateModification( )
79      {
80          return _strDateModification;
81      }
82  
83      public String getDirection( )
84      {
85          return _strDirection;
86      }
87  
88      public String getEntite( )
89      {
90          return _strEntite;
91      }
92  
93      public List<String> getListSignalementNumeros( )
94      {
95          return _listSignalementNumeros;
96      }
97  
98      public List<Integer> getListSignalementIds( )
99      {
100         return _listSignalementIds;
101     }
102 
103     public int getNbCosultation( )
104     {
105         return _nNbCosultation;
106     }
107 
108     public void setIdFdt( long idFdt )
109     {
110         _nIdFdt = idFdt;
111     }
112 
113     public void setNom( String nom )
114     {
115         _strNom = nom;
116     }
117 
118     public void setCreateur( String createur )
119     {
120         _strCreateur = createur;
121     }
122 
123     public void setDateCreation( String dateCreation )
124     {
125         _strDateCreation = dateCreation;
126     }
127 
128     public void setDateModification( String dateModification )
129     {
130         _strDateModification = dateModification;
131     }
132 
133     public void setDirection( String direction )
134     {
135         _strDirection = direction;
136     }
137 
138     public void setEntite( String entite )
139     {
140         _strEntite = entite;
141     }
142 
143     public void setListSignalementNumeros( List<String> listSignalementNumeros )
144     {
145         _listSignalementNumeros = listSignalementNumeros;
146     }
147 
148     public void setListSignalementIds( List<Integer> listSignalementIds )
149     {
150         _listSignalementIds = listSignalementIds;
151     }
152 
153     public void setNbCosultation( int nbCosultation )
154     {
155         _nNbCosultation = nbCosultation;
156     }
157 
158 }