View Javadoc
1   /*
2    * Copyright (c) 2002-2020, City of 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.api.entreprise.business;
35  
36  import com.fasterxml.jackson.annotation.JsonProperty;
37  
38  /**
39   * The Class AdresseEtablissement.
40   */
41  public class AdresseEtablissement
42  {
43  
44      /** The numero voie. */
45      private String numero_voie;
46  
47      /** The indice repetition voie. */
48      private String indice_repetition_voie;
49  
50      /** The type voie. */
51      private String type_voie;
52  
53      /** The libelle voie. */
54      private String libelle_voie;
55  
56      /** The complement adresse. */
57      private String complement_adresse;
58  
59      /** The code postal. */
60      private String code_postal;
61  
62      /** The libelle commune. */
63      private String libelle_commune;
64  
65      /** The code commune. */
66      private String code_commune;
67  
68      /** The code cedex. */
69      private String code_cedex;
70  
71      /** The code pays etranger. */
72      private String code_pays_etranger;
73  
74      /** The libelle pays etranger. */
75      private String libelle_pays_etranger;
76  
77      /** The acheminement postal. */
78      @JsonProperty("acheminement_postal")
79      private AcheminementPostal acheminement_postal;
80  
81      /**
82       * Gets the numero voie.
83       *
84       * @return the numero voie
85       */
86      public String getNumero_voie( )
87      {
88          return numero_voie;
89      }
90  
91      /**
92       * Sets the numero voie.
93       *
94       * @param numero_voie
95       *            the new numero voie
96       */
97      public void setNumero_voie( String numero_voie )
98      {
99          this.numero_voie = numero_voie;
100     }
101 
102     /**
103      * Gets the indice repetition voie.
104      *
105      * @return the indice repetition voie
106      */
107     public String getIndice_repetition_voie( )
108     {
109         return indice_repetition_voie;
110     }
111 
112     /**
113      * Sets the indice repetition voie.
114      *
115      * @param indice_repetition_voie
116      *            the new indice repetition voie
117      */
118     public void setIndice_repetition_voie( String indice_repetition_voie )
119     {
120         this.indice_repetition_voie = indice_repetition_voie;
121     }
122 
123     /**
124      * Gets the type voie.
125      *
126      * @return the type voie
127      */
128     public String getType_voie( )
129     {
130         return type_voie;
131     }
132 
133     /**
134      * Sets the type voie.
135      *
136      * @param type_voie
137      *            the new type voie
138      */
139     public void setType_voie( String type_voie )
140     {
141         this.type_voie = type_voie;
142     }
143 
144     /**
145      * Gets the libelle voie.
146      *
147      * @return the libelle voie
148      */
149     public String getLibelle_voie( )
150     {
151         return libelle_voie;
152     }
153 
154     /**
155      * Sets the nom voie.
156      *
157      * @param libelle_voie
158      *            the new libelle voie
159      */
160     public void setLibelle_voie( String libelle_voie )
161     {
162         this.libelle_voie = libelle_voie;
163     }
164 
165     /**
166      * Gets the complement adresse.
167      *
168      * @return the complement adresse
169      */
170     public String getComplement_adresse( )
171     {
172         return complement_adresse;
173     }
174 
175     /**
176      * Sets the complement adresse.
177      *
178      * @param complement_adresse
179      *            the new complement adresse
180      */
181     public void setComplement_adresse( String complement_adresse )
182     {
183         this.complement_adresse = complement_adresse;
184     }
185 
186     /**
187      * Gets the code postal.
188      *
189      * @return the code postal
190      */
191     public String getCode_postal( )
192     {
193         return code_postal;
194     }
195 
196     /**
197      * Sets the code postal.
198      *
199      * @param code_postal
200      *            the new code postal
201      */
202     public void setCode_postal( String code_postal )
203     {
204         this.code_postal = code_postal;
205     }
206 
207     /**
208      * Gets the libelle commune.
209      *
210      * @return the libelle commune
211      */
212     public String getLibelle_commune( )
213     {
214         return libelle_commune;
215     }
216 
217     /**
218      * Sets the libelle commune.
219      *
220      * @param libelle_commune
221      *            the new libelle commune
222      */
223     public void setLibelle_commune( String libelle_commune )
224     {
225         this.libelle_commune = libelle_commune;
226     }
227 
228     /**
229      * Gets the code commune.
230      *
231      * @return the code commune
232      */
233     public String getCode_commune( )
234     {
235         return code_commune;
236     }
237 
238     /**
239      * Sets the code commune.
240      *
241      * @param code_commune
242      *            the new code commune
243      */
244     public void setCode_commune( String code_commune )
245     {
246         this.code_commune = code_commune;
247     }
248 
249     /**
250      * Gets the code cedex.
251      *
252      * @return the code cedex
253      */
254     public String getCode_cedex( )
255     {
256         return code_cedex;
257     }
258 
259     /**
260      * Sets the code cedex.
261      *
262      * @param code_cedex
263      *            the new code cedex
264      */
265     public void setCode_cedex( String code_cedex )
266     {
267         this.code_cedex = code_cedex;
268     }
269 
270     /**
271      * Gets the code pays etranger.
272      *
273      * @return the code pays etranger
274      */
275     public String getCode_pays_etranger( )
276     {
277         return code_pays_etranger;
278     }
279 
280     /**
281      * Sets the code pays etranger.
282      *
283      * @param code_pays_etranger
284      *            the new code pays etranger
285      */
286     public void setCode_pays_etranger( String code_pays_etranger )
287     {
288         this.code_pays_etranger = code_pays_etranger;
289     }
290 
291     /**
292      * Gets the libelle pays etranger.
293      *
294      * @return the libelle pays etranger
295      */
296     public String getLibelle_pays_etranger( )
297     {
298         return libelle_pays_etranger;
299     }
300 
301     /**
302      * Sets the libelle pays etranger.
303      *
304      * @param libelle_pays_etranger
305      *            the new libelle pays etranger
306      */
307     public void setLibelle_pays_etranger( String libelle_pays_etranger )
308     {
309         this.libelle_pays_etranger = libelle_pays_etranger;
310     }
311 
312     /**
313      * Gets the acheminement postal.
314      *
315      * @return the acheminement postal
316      */
317     public AcheminementPostal getAcheminement_postal( )
318     {
319         return acheminement_postal;
320     }
321 
322     /**
323      * Sets the acheminement postal.
324      *
325      * @param acheminement_postal
326      *            the new acheminement postal
327      */
328     public void setAcheminement_postal( AcheminementPostal acheminement_postal )
329     {
330         this.acheminement_postal = acheminement_postal;
331     }
332 
333 }