View Javadoc
1   /*
2    * Copyright (c) 2002-2015, 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.customerprovisioning.business;
35  
36  
37  // TODO: Auto-generated Javadoc
38  /**
39   * This is the business class for the object OpenAMUserDTO.
40   */
41  public class UserDTO
42  {
43      /** The _str uid. */
44      // Variables declarations 
45      private String _strUid;
46  
47      /** The _str civility. */
48      private String _strCivility;
49  
50      /** The _str firstname. */
51      private String _strFirstname;
52  
53      /** The _str lastname. */
54      private String _strLastname;
55  
56      /** The _str telephone number. */
57      private String _strTelephoneNumber;
58      private String _strFixedPhoneNumber;
59  
60      /** The _str birthday. */
61      private String _strBirthday;
62  
63      /** The _str street. */
64      private String _strStreet;
65  
66      /** The _str postal code. */
67      private String _strPostalCode;
68  
69      /** The _str city. */
70      private String _strCity;
71  
72      /** The _str city of birth. */
73      private String _strCityOfBirth;
74  
75      /** The _str email. */
76      private String _strEmail;
77  
78      /** The _str stay connected. */
79      private String _strStayConnected;
80  
81      /**
82       * Returns the Uid.
83       *
84       * @return The Uid
85       */
86      public String getUid(  )
87      {
88          return _strUid;
89      }
90  
91      /**
92       * Sets the Uid.
93       *
94       * @param strUid The Uid
95       */
96      public void setUid( String strUid )
97      {
98          _strUid = strUid;
99      }
100 
101     /**
102      * Returns the Civility.
103      *
104      * @return The Civility
105      */
106     public String getCivility(  )
107     {
108         return _strCivility;
109     }
110 
111     /**
112      * Sets the Civility.
113      *
114      * @param strCivility The Civility
115      */
116     public void setCivility( String strCivility )
117     {
118         _strCivility = strCivility;
119     }
120 
121     /**
122      * Returns the Firstname.
123      *
124      * @return The Firstname
125      */
126     public String getFirstname(  )
127     {
128         return _strFirstname;
129     }
130 
131     /**
132      * Sets the Firstname.
133      *
134      * @param strFirstname The Firstname
135      */
136     public void setFirstname( String strFirstname )
137     {
138         _strFirstname = strFirstname;
139     }
140 
141     /**
142      * Returns the Lastname.
143      *
144      * @return The Lastname
145      */
146     public String getLastname(  )
147     {
148         return _strLastname;
149     }
150 
151     /**
152      * Sets the Lastname.
153      *
154      * @param strLastname The Lastname
155      */
156     public void setLastname( String strLastname )
157     {
158         _strLastname = strLastname;
159     }
160 
161     /**
162      * Returns the TelephoneNumber.
163      *
164      * @return The TelephoneNumber
165      */
166     public String getTelephoneNumber(  )
167     {
168         return _strTelephoneNumber;
169     }
170 
171     /**
172      * Sets the TelephoneNumber.
173      *
174      * @param strTelephoneNumber The TelephoneNumber
175      */
176     public void setTelephoneNumber( String strTelephoneNumber )
177     {
178         _strTelephoneNumber = strTelephoneNumber;
179     }
180 
181     /**
182           * @return the _strFixedPhoneNumber
183           */
184     public String getFixedPhoneNumber(  )
185     {
186         return _strFixedPhoneNumber;
187     }
188 
189     /**
190       * @param strFixedPhoneNumber the _strFixedPhoneNumber to set
191       */
192     public void setFixedPhoneNumber( String strFixedPhoneNumber )
193     {
194         this._strFixedPhoneNumber = strFixedPhoneNumber;
195     }
196 
197     /**
198      * Returns the Birthday.
199      *
200      * @return The Birthday
201      */
202     public String getBirthday(  )
203     {
204         return _strBirthday;
205     }
206 
207     /**
208      * Sets the Birthday.
209      *
210      * @param strBirthday The Birthday
211      */
212     public void setBirthday( String strBirthday )
213     {
214         _strBirthday = strBirthday;
215     }
216 
217     /**
218      * Returns the Street.
219      *
220      * @return The Street
221      */
222     public String getStreet(  )
223     {
224         return _strStreet;
225     }
226 
227     /**
228      * Sets the Street.
229      *
230      * @param strStreet The Street
231      */
232     public void setStreet( String strStreet )
233     {
234         _strStreet = strStreet;
235     }
236 
237     /**
238      * Returns the PostalCode.
239      *
240      * @return The PostalCode
241      */
242     public String getPostalCode(  )
243     {
244         return _strPostalCode;
245     }
246 
247     /**
248      * Sets the PostalCode.
249      *
250      * @param strPostalCode The PostalCode
251      */
252     public void setPostalCode( String strPostalCode )
253     {
254         _strPostalCode = strPostalCode;
255     }
256 
257     /**
258      * Returns the City.
259      *
260      * @return The City
261      */
262     public String getCity(  )
263     {
264         return _strCity;
265     }
266 
267     /**
268      * Sets the City.
269      *
270      * @param strCity The City
271      */
272     public void setCity( String strCity )
273     {
274         _strCity = strCity;
275     }
276 
277     /**
278      * Returns the CityOfBirth.
279      *
280      * @return The CityOfBirth
281      */
282     public String getCityOfBirth(  )
283     {
284         return _strCityOfBirth;
285     }
286 
287     /**
288      * Sets the CityOfBirth.
289      *
290      * @param strCityOfBirth The CityOfBirth
291      */
292     public void setCityOfBirth( String strCityOfBirth )
293     {
294         _strCityOfBirth = strCityOfBirth;
295     }
296 
297     /**
298      * Gets the email.
299      *
300      * @return the email
301      */
302     public String getEmail(  )
303     {
304         return _strEmail;
305     }
306 
307     /**
308      * Sets the email.
309      *
310      * @param stremail the new email
311      */
312     public void setEmail( String stremail )
313     {
314         this._strEmail = stremail;
315     }
316 
317     /**
318      * Returns the StayConnected.
319      *
320      * @return The StayConnected
321      */
322     public String getStayConnected(  )
323     {
324         return _strStayConnected;
325     }
326 
327     /**
328      * Sets the StayConnected.
329      *
330      * @param strStayConnected The StayConnected
331      */
332     public void setStayConnected( String strStayConnected )
333     {
334         _strStayConnected = strStayConnected;
335     }
336 }