(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 an element of a controlled vocabulary
24 * for different kinds of institutions.
25 * Each element belongs to one {@link common.TermVocabulary vocabulary}.
26 * <p>
27 * See also the <a href="http://rs.tdwg.org/ontology/voc/InstitutionType">TDWG Ontology</a>
28 *
29 *
30 * @author m.doering
31 * @version 1.0
32 * @created 08-Nov-2007 13:06:30
33 */
34 @Entity
35 public class InstitutionType extends DefinedTermBase {
36 static Logger logger = Logger.getLogger(InstitutionType.class);
37
38 /**
39 * Class constructor.
40 *
41 * @see #InstitutionType(String, String)
42 */
43 public InstitutionType() {
44 super();
45 // TODO Auto-generated constructor stub
46 }
47
48 /**
49 * Class constructor using both term and label strings.
50 *
51 * @param term the string describing this vocabulary element
52 * in the default language
53 * @param label the string which identifies this vocabulary element
54 * irrespective of the language
55 * @see common.Representation
56 * @see common.TermBase#TermBase(String, String)
57 */
58 public InstitutionType(String term, String label) {
59 super(term, label);
60 // TODO Auto-generated constructor stub
61 }
62
63
64 }