Project

General

Profile

Download (1012 Bytes) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
* Copyright (C) 2014 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
package eu.etaxonomy.cdm.persistence.dao.hibernate.molecular;
11

    
12
import org.apache.log4j.Logger;
13
import org.springframework.stereotype.Repository;
14

    
15
import eu.etaxonomy.cdm.model.molecular.Sequence;
16
import eu.etaxonomy.cdm.persistence.dao.hibernate.common.AnnotatableDaoImpl;
17
import eu.etaxonomy.cdm.persistence.dao.molecular.ISequenceDao;
18

    
19
/**
20
 * @author pplitzner
21
 * @date 11.03.2014
22
 *
23
 */
24
@Repository
25
public class SequenceDaoHibernateImpl extends AnnotatableDaoImpl<Sequence> implements ISequenceDao{
26

    
27
    @SuppressWarnings("unused")
28
    private static final Logger logger = Logger.getLogger(SequenceDaoHibernateImpl.class);
29

    
30
    /**
31
     * @param type
32
     */
33
    public SequenceDaoHibernateImpl() {
34
        super(Sequence.class);
35
    }
36

    
37
}
(3-3/4)