(no commit message)
[cdmlib.git] / cdmlib-model / src / main / java / eu / etaxonomy / cdm / model / common / ExtensionType.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 * Extension types similar to dynamically defined attributes. These are not data
20 * types, but rather content types like "DOI", "2nd nomenclatural reference", "3rd
21 * hybrid parent" or specific local identifiers.
22 * @author m.doering
23 * @version 1.0
24 * @created 08-Nov-2007 13:06:23
25 */
26 @Entity
27 public class ExtensionType extends DefinedTermBase {
28 static Logger logger = Logger.getLogger(ExtensionType.class);
29
30 public ExtensionType() {
31 super();
32 }
33 public ExtensionType(String term, String label, String labelAbbrev) {
34 super(term, label, labelAbbrev);
35 }
36
37
38 public static final ExtensionType XML_FRAGMENT(){
39 return null;
40 }
41
42 public static final ExtensionType RDF_FRAGMENT(){
43 return null;
44 }
45
46 }