Project

General

Profile

Download (925 Bytes) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
* Copyright (C) 2013 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.api.service;
11

    
12
import org.springframework.beans.factory.annotation.Autowired;
13
import org.springframework.stereotype.Service;
14
import org.springframework.transaction.annotation.Transactional;
15

    
16
import eu.etaxonomy.cdm.model.common.EventBase;
17
import eu.etaxonomy.cdm.persistence.dao.common.IEventBaseDao;
18

    
19
/**
20
 * @author a.kohlbecker
21
 * @date Jan 9, 2013
22
 *
23
 */
24
@Service
25
@Transactional(readOnly = true)
26
public class EventBaseServiceImpl extends AnnotatableServiceBase<EventBase, IEventBaseDao> implements IEventBaseService {
27

    
28
    @Override
29
    @Autowired
30
    protected void setDao(IEventBaseDao dao) {
31
        this.dao = dao;
32
    }
33

    
34
}
(21-21/98)