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