Project

General

Profile

Download (1.13 KB) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
* Copyright (C) 2007 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

    
11
package eu.etaxonomy.cdm.api.service;
12

    
13
import org.apache.log4j.Logger;
14
import org.springframework.beans.factory.annotation.Autowired;
15
import org.springframework.stereotype.Service;
16
import org.springframework.transaction.annotation.Propagation;
17
import org.springframework.transaction.annotation.Transactional;
18

    
19
import eu.etaxonomy.cdm.model.description.FeatureNode;
20
import eu.etaxonomy.cdm.persistence.dao.description.IFeatureNodeDao;
21

    
22
/**
23
 * @author n.hoffmann
24
 * @created Aug 5, 2010
25
 * @version 1.0
26
 */
27
@Service
28
@Transactional(propagation = Propagation.SUPPORTS, readOnly = false)
29
public class FeatureNodeServiceImpl extends VersionableServiceBase<FeatureNode, IFeatureNodeDao> implements IFeatureNodeService {
30
	private static final Logger logger = Logger.getLogger(FeatureNodeServiceImpl.class);
31
	
32
	@Autowired
33
	protected void setDao(IFeatureNodeDao dao) {
34
		this.dao = dao;
35
	}
36
	
37
}
(18-18/76)