Revision 08ed6da1
Added by Andreas Müller over 11 years ago
.gitattributes | ||
---|---|---|
1775 | 1775 |
cdmlib-services/src/main/java/eu/etaxonomy/cdm/api/service/NamedAreaTree.java -text |
1776 | 1776 |
cdmlib-services/src/main/java/eu/etaxonomy/cdm/api/service/NaturalLanguageGenerator.java -text |
1777 | 1777 |
cdmlib-services/src/main/java/eu/etaxonomy/cdm/api/service/OccurrenceServiceImpl.java -text |
1778 |
cdmlib-services/src/main/java/eu/etaxonomy/cdm/api/service/PolytomousKeyNodeService.java -text |
|
1778 |
cdmlib-services/src/main/java/eu/etaxonomy/cdm/api/service/PolytomousKeyNodeServiceImpl.java -text
|
|
1779 | 1779 |
cdmlib-services/src/main/java/eu/etaxonomy/cdm/api/service/PolytomousKeyServiceImpl.java -text |
1780 | 1780 |
cdmlib-services/src/main/java/eu/etaxonomy/cdm/api/service/ReferenceServiceImpl.java -text |
1781 | 1781 |
cdmlib-services/src/main/java/eu/etaxonomy/cdm/api/service/ServiceBase.java -text |
cdmlib-services/src/main/java/eu/etaxonomy/cdm/api/service/PolytomousKeyNodeService.java | ||
---|---|---|
1 |
// $Id$ |
|
2 |
/** |
|
3 |
* Copyright (C) 2009 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.Propagation; |
|
15 |
import org.springframework.transaction.annotation.Transactional; |
|
16 |
|
|
17 |
import eu.etaxonomy.cdm.model.description.PolytomousKeyNode; |
|
18 |
import eu.etaxonomy.cdm.persistence.dao.description.IPolytomousKeyNodeDao; |
|
19 |
|
|
20 |
/** |
|
21 |
* @author a.kohlbecker |
|
22 |
* @date 24.03.2011 |
|
23 |
* |
|
24 |
*/ |
|
25 |
@Service |
|
26 |
@Transactional(propagation = Propagation.SUPPORTS, readOnly = false) |
|
27 |
public class PolytomousKeyNodeService extends VersionableServiceBase<PolytomousKeyNode, IPolytomousKeyNodeDao> implements IPolytomousKeyNodeService { |
|
28 |
|
|
29 |
|
|
30 |
@Autowired |
|
31 |
protected void setDao(IPolytomousKeyNodeDao dao) { |
|
32 |
this.dao = dao; |
|
33 |
} |
|
34 |
|
|
35 |
} |
cdmlib-services/src/main/java/eu/etaxonomy/cdm/api/service/PolytomousKeyNodeServiceImpl.java | ||
---|---|---|
1 |
// $Id$ |
|
2 |
/** |
|
3 |
* Copyright (C) 2009 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.Propagation; |
|
15 |
import org.springframework.transaction.annotation.Transactional; |
|
16 |
|
|
17 |
import eu.etaxonomy.cdm.model.description.PolytomousKeyNode; |
|
18 |
import eu.etaxonomy.cdm.persistence.dao.description.IPolytomousKeyNodeDao; |
|
19 |
|
|
20 |
/** |
|
21 |
* @author a.kohlbecker |
|
22 |
* @date 24.03.2011 |
|
23 |
* |
|
24 |
*/ |
|
25 |
@Service |
|
26 |
@Transactional(propagation = Propagation.SUPPORTS, readOnly = false) |
|
27 |
public class PolytomousKeyNodeServiceImpl extends VersionableServiceBase<PolytomousKeyNode, IPolytomousKeyNodeDao> implements IPolytomousKeyNodeService { |
|
28 |
|
|
29 |
|
|
30 |
@Autowired |
|
31 |
protected void setDao(IPolytomousKeyNodeDao dao) { |
|
32 |
this.dao = dao; |
|
33 |
} |
|
34 |
|
|
35 |
|
|
36 |
|
|
37 |
|
|
38 |
} |
Also available in: Unified diff
rename PolytomousKeyNodeService