move source to src/main/java
[cdmlib.git] / cdmlibrary / src / main / java / eu / etaxonomy / cdm / model / specimen / Country.java
1 /**
2 * Copyright (C) 2007 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9
10 package eu.etaxonomy.cdm.model.specimen;
11
12
13 import eu.etaxonomy.cdm.model.common.VersionableEntity;
14 import org.apache.log4j.Logger;
15 import java.util.*;
16 import javax.persistence.*;
17
18 /**
19 * @author Andreas Mueller
20 * @version 1.0
21 * @created 15-Aug-2007 18:36:03
22 */
23 @Entity
24 public class Country extends VersionableEntity {
25 static Logger logger = Logger.getLogger(Country.class);
26
27 private String name;
28
29 public String getName(){
30 return name;
31 }
32
33 /**
34 *
35 * @param newVal
36 */
37 public void setName(String newVal){
38 name = newVal;
39 }
40
41 }