3f2cb10f9a3d666704eeae329d0808e2f952c0b4
[cdmlib.git] / cdmlib-persistence / src / main / java / eu / etaxonomy / cdm / persistence / dao / hibernate / molecular / SingleReadDaoHibernateImpl.java
1 /**
2 * Copyright (C) 2014 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 package eu.etaxonomy.cdm.persistence.dao.hibernate.molecular;
10
11 import org.apache.logging.log4j.LogManager;import org.apache.logging.log4j.Logger;
12 import org.springframework.stereotype.Repository;
13
14 import eu.etaxonomy.cdm.model.molecular.SingleRead;
15 import eu.etaxonomy.cdm.persistence.dao.hibernate.common.AnnotatableDaoBaseImpl;
16 import eu.etaxonomy.cdm.persistence.dao.molecular.ISingleReadDao;
17
18 /**
19 * @author pplitzner
20 * @since 11.03.2014
21 *
22 */
23 @Repository
24 public class SingleReadDaoHibernateImpl extends AnnotatableDaoBaseImpl<SingleRead> implements ISingleReadDao{
25
26 @SuppressWarnings("unused")
27 private static final Logger logger = LogManager.getLogger(SingleReadDaoHibernateImpl.class);
28
29 /**
30 * @param type
31 */
32 public SingleReadDaoHibernateImpl() {
33 super(SingleRead.class);
34 }
35
36 }