1
2 /*
3 * Copyright (c) 2002-2013, Mairie de Paris
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
10 * 1. Redistributions of source code must retain the above copyright notice
11 * and the following disclaimer.
12 *
13 * 2. Redistributions in binary form must reproduce the above copyright notice
14 * and the following disclaimer in the documentation and/or other materials
15 * provided with the distribution.
16 *
17 * 3. Neither the name of 'Mairie de Paris' nor 'Lutece' nor the names of its
18 * contributors may be used to endorse or promote products derived from
19 * this software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE.
32 *
33 * License 1.0
34 */
35 package fr.paris.lutece.plugins.mvcdemo.business;
36
37 import javax.validation.constraints.Pattern;
38
39 /**
40 * This is the business class for the object Contact
41 */
42 public class Contact
43 {
44
45 @Pattern(regexp = "[a-z]+")
46 private String _strName;
47
48 /**
49 * Returns the Name
50 *
51 * @return The Name
52 */
53 public String getName()
54 {
55 return _strName;
56 }
57
58 /**
59 * Sets the Name
60 *
61 * @param strName The Name
62 */
63 public void setName(String strName)
64 {
65 _strName = strName;
66 }
67 }