Project

General

Profile

Download (1.05 KB) 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.description;
11

    
12
import java.util.List;
13

    
14
import org.apache.log4j.Logger;
15
import org.hibernate.Criteria;
16
import org.springframework.stereotype.Repository;
17

    
18
import eu.etaxonomy.cdm.model.description.Feature;
19
import eu.etaxonomy.cdm.persistence.dao.description.IFeatureDao;
20
import eu.etaxonomy.cdm.persistence.dao.hibernate.common.CdmEntityDaoBase;
21

    
22

    
23
@Repository
24
public class FeatureDaoImpl extends CdmEntityDaoBase<Feature> implements IFeatureDao{
25
	@SuppressWarnings("unused")
26
	private static final Logger logger = Logger.getLogger(FeatureDaoImpl.class);
27

    
28
	public FeatureDaoImpl() {
29
		super(Feature.class); 
30
	}
31
	
32
	public List<Feature> list() {
33
		Criteria crit = getSession().createCriteria(type); 
34
		return crit.list(); 
35
	}
36

    
37
}
(3-3/6)