Project

General

Profile

Download (945 Bytes) Statistics
| Branch: | Tag: | Revision:
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.persistence.dao.hibernate.common;
11

    
12
import java.util.List;
13

    
14
import org.springframework.stereotype.Repository;
15

    
16
import eu.etaxonomy.cdm.model.common.DefinedTermBase;
17
import eu.etaxonomy.cdm.model.common.TermVocabulary;
18
import eu.etaxonomy.cdm.model.occurrence.Collection;
19
import eu.etaxonomy.cdm.persistence.dao.common.ITermVocabularyDao;
20

    
21
/**
22
 * @author a.mueller
23
 *
24
 */
25
@Repository
26
public class TermVocabularyDaoImpl extends CdmEntityDaoBase<TermVocabulary<DefinedTermBase>> implements
27
		ITermVocabularyDao {
28

    
29
	
30
	/**
31
	 * @param type
32
	 */
33
	public TermVocabularyDaoImpl() {
34
		super((Class)TermVocabulary.class);
35
	}
36

    
37

    
38
}
(11-11/11)