Project

General

Profile

Download (1006 Bytes) Statistics
| Branch: | Tag: | Revision:
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.log4j.Logger;
12
import org.springframework.stereotype.Repository;
13

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

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

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

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

    
36
}
(3-3/4)