1 /*******************************************************************************
2 * Gisgraphy Project
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
17 *
18 * Copyright 2008 Gisgraphy project
19 * David Masclet <davidmasclet@gisgraphy.com>
20 *
21 *
22 *******************************************************************************/
23 package com.gisgraphy.domain.geoloc.entity;
24
25 import javax.persistence.Entity;
26 import javax.persistence.Transient;
27
28 import org.hibernate.annotations.Cache;
29 import org.hibernate.annotations.CacheConcurrencyStrategy;
30
31 /**
32 * Represents a {@link Continent}.
33 *
34 * @author <a href="mailto:david.masclet@gisgraphy.com">David Masclet</a>
35 */
36 @Entity
37 @Cache(usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE)
38 public class Continent extends GisFeature {
39
40 /**
41 * Override the gisFeature value.<br>
42 * Default to true;<br>
43 * If this field is set to false, then the object won't be synchronized with
44 * the fullText search engine
45 */
46 @Override
47 @Transient
48 public boolean isFullTextSearchable() {
49 return true;
50 }
51
52 /**
53 * Constructor that populate the {@link Continent} with the gisFeature
54 * fields<br>
55 *
56 * @param gisFeature
57 * The gisFeature from which we want to populate the
58 * {@link Continent}
59 */
60 public Continent(GisFeature gisFeature) {
61 super(gisFeature);
62 }
63
64 /**
65 * Needed by CGLib
66 */
67 public Continent() {
68 super();
69 }
70
71 }