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  /**
37   * The Class AdresseAssociation.
38   */
39  public class AdresseAssociation
40  {
41  
42      /** The numero voie. */
43      private String numero_voie;
44  
45      /** The type voie. */
46      private String type_voie;
47  
48      /** The libelle voie. */
49      private String libelle_voie;
50  
51      /** The complement. */
52      private String complement;
53  
54      /** The code postal. */
55      private String code_postal;
56  
57      /** The commune. */
58      private String commune;
59  
60      /**
61       * Gets the numero voie.
62       *
63       * @return the numero voie
64       */
65      public String getNumero_voie( )
66      {
67          return numero_voie;
68      }
69  
70      /**
71       * Sets the numero voie.
72       *
73       * @param numero_voie
74       *            the new numero voie
75       */
76      public void setNumero_voie( String numero_voie )
77      {
78          this.numero_voie = numero_voie;
79      }
80  
81      /**
82       * Gets the type voie.
83       *
84       * @return the type voie
85       */
86      public String getType_voie( )
87      {
88          return type_voie;
89      }
90  
91      /**
92       * Sets the type voie.
93       *
94       * @param type_voie
95       *            the new type voie
96       */
97      public void setType_voie( String type_voie )
98      {
99          this.type_voie = type_voie;
100     }
101 
102     /**
103      * Gets the libelle voie.
104      *
105      * @return the libelle voie
106      */
107     public String getLibelle_voie( )
108     {
109         return libelle_voie;
110     }
111 
112     /**
113      * Sets the libelle voie.
114      *
115      * @param libelle_voie
116      *            the new libelle voie
117      */
118     public void setLibelle_voie( String libelle_voie )
119     {
120         this.libelle_voie = libelle_voie;
121     }
122 
123     /**
124      * Gets the complement.
125      *
126      * @return the complement
127      */
128     public String getComplement( )
129     {
130         return complement;
131     }
132 
133     /**
134      * Sets the complement.
135      *
136      * @param complement
137      *            the new complement
138      */
139     public void setComplement( String complement )
140     {
141         this.complement = complement;
142     }
143 
144     /**
145      * Gets the code postal.
146      *
147      * @return the code postal
148      */
149     public String getCode_postal( )
150     {
151         return code_postal;
152     }
153 
154     /**
155      * Sets the code postal.
156      *
157      * @param code_postal
158      *            the new code postal
159      */
160     public void setCode_postal( String code_postal )
161     {
162         this.code_postal = code_postal;
163     }
164 
165     /**
166      * Gets the commune.
167      *
168      * @return the commune
169      */
170     public String getCommune( )
171     {
172         return commune;
173     }
174 
175     /**
176      * Sets the commune.
177      *
178      * @param commune
179      *            the new commune
180      */
181     public void setCommune( String commune )
182     {
183         this.commune = commune;
184     }
185 
186 }