b638040ca6e8c94fd4a432c3d0fc0607f413ebee
[cdmlib.git] / cdmlib-persistence / src / main / java / eu / etaxonomy / cdm / persistence / dao / hibernate / taxon / TaxonomicTreeDaoHibernateImpl.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10
11 package eu.etaxonomy.cdm.persistence.dao.hibernate.taxon;
12
13 import org.apache.log4j.Logger;
14 import org.springframework.beans.factory.annotation.Qualifier;
15 import org.springframework.stereotype.Repository;
16
17 import eu.etaxonomy.cdm.model.taxon.TaxonomicTree;
18 import eu.etaxonomy.cdm.persistence.dao.hibernate.common.IdentifiableDaoBase;
19 import eu.etaxonomy.cdm.persistence.dao.taxon.ITaxonomicTreeDao;
20
21 /**
22 * @author a.mueller
23 * @created 16.06.2009
24 * @version 1.0
25 */
26 @Repository
27 @Qualifier("taxonomicTreeDaoHibernateImpl")
28 public class TaxonomicTreeDaoHibernateImpl extends IdentifiableDaoBase<TaxonomicTree>
29 implements ITaxonomicTreeDao {
30 @SuppressWarnings("unused")
31 private static final Logger logger = Logger.getLogger(TaxonomicTreeDaoHibernateImpl.class);
32
33 public TaxonomicTreeDaoHibernateImpl() {
34 super(TaxonomicTree.class);
35 }
36
37
38 }