(no commit message)
[cdmlib.git] / cdmlib-model / src / main / java / eu / etaxonomy / cdm / model / location / ReferenceSystem.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.location;
11
12
13 import eu.etaxonomy.cdm.model.common.DefinedTermBase;
14
15
16 import org.apache.log4j.Logger;
17
18 import java.util.*;
19 import javax.persistence.*;
20
21 /**
22 * Reference systems for coordinates also according to OGC (Open Geographical
23 * Consosrtium) The list should be extensible at runtime through configuration.
24 * This needs to be investigated.
25 * @author m.doering
26 * @version 1.0
27 * @created 08-Nov-2007 13:06:49
28 */
29 @Entity
30 public class ReferenceSystem extends DefinedTermBase {
31 static Logger logger = Logger.getLogger(ReferenceSystem.class);
32
33 public ReferenceSystem(String term, String label) {
34 super(term, label);
35 // TODO Auto-generated constructor stub
36 }
37
38
39 public static final ReferenceSystem WGS84(){
40 return null;
41 }
42
43 }