(no commit message)
[cdmlib.git] / cdmlib-model / src / main / java / eu / etaxonomy / cdm / model / common / Keyword.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.common;
11
12
13 import org.apache.log4j.Logger;
14
15 import java.util.*;
16 import javax.persistence.*;
17
18 /**
19 * simple keywords. could be taxonomic scope/skill , geographic scope or anything else
20 * @author m.doering
21 * @version 1.0
22 * @created 08-Nov-2007 13:06:31
23 */
24 @Entity
25 public class Keyword extends OrderedTermBase<Keyword> {
26 static Logger logger = Logger.getLogger(Keyword.class);
27
28 public Keyword() {
29 super();
30 // TODO Auto-generated constructor stub
31 }
32
33 public Keyword(String term, String label) {
34 super(term, label);
35 // TODO Auto-generated constructor stub
36 }
37
38 }