(no commit message)
[cdmlib.git] / cdmlib-model / src / main / java / eu / etaxonomy / cdm / model / occurrence / LivingBeing.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.occurrence;
11
12 import org.apache.log4j.Logger;
13 import javax.persistence.*;
14
15 /**
16 * @author m.doering
17 * @version 1.0
18 * @created 08-Nov-2007 13:06:32
19 */
20 @Entity
21 public class LivingBeing extends DerivedUnitBase {
22 private static final Logger logger = Logger.getLogger(LivingBeing.class);
23
24 /**
25 * Factory method
26 * @return
27 */
28 public static LivingBeing NewInstance(){
29 return new LivingBeing();
30 }
31
32 /**
33 * Constructor
34 */
35 protected LivingBeing() {
36 super();
37 }
38 }