(no commit message)
[cdmlib.git] / cdmlib-model / src / main / java / eu / etaxonomy / cdm / model / agent / InstitutionType.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.agent;
11
12
13 import eu.etaxonomy.cdm.model.common.DefinedTermBase;
14 import eu.etaxonomy.cdm.model.common.OrderedTermBase;
15 import eu.etaxonomy.cdm.model.common.TermVocabulary;
16
17 import org.apache.log4j.Logger;
18
19 import java.util.*;
20 import javax.persistence.*;
21
22 /**
23 * Represents a term of a controlled vocabulary for different kinds of institutions.
24 * Each term belongs to one {@link common.TermVocabulary vocabulary}.
25 * <p>
26 * See also the <a href="http://rs.tdwg.org/ontology/voc/InstitutionType">TDWG Ontology</a>
27 *
28 *
29 * @author m.doering
30 * @version 1.0
31 * @created 08-Nov-2007 13:06:30
32 */
33 @Entity
34 public class InstitutionType extends DefinedTermBase {
35 static Logger logger = Logger.getLogger(InstitutionType.class);
36
37 public InstitutionType() {
38 super();
39 // TODO Auto-generated constructor stub
40 }
41
42 public InstitutionType(String term, String label) {
43 super(term, label);
44 // TODO Auto-generated constructor stub
45 }
46
47
48 }