Project

General

Profile

Download (1.05 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2009 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
package eu.etaxonomy.cdm.remote.controller;
10

    
11
import io.swagger.annotations.Api;
12

    
13
import org.springframework.beans.factory.annotation.Autowired;
14
import org.springframework.stereotype.Controller;
15
import org.springframework.web.bind.annotation.RequestMapping;
16

    
17
import eu.etaxonomy.cdm.api.service.IPolytomousKeyNodeService;
18
import eu.etaxonomy.cdm.model.description.PolytomousKeyNode;
19

    
20
/**
21
 * @author a.kohlbecker
22
 * @since 24.03.2011
23
 *
24
 */
25
@Controller
26
@Api("polytomousKeyNode")
27
@RequestMapping(value = {"/polytomousKeyNode"})
28
public class PolytomousKeyNodeListController extends BaseListController<PolytomousKeyNode, IPolytomousKeyNodeService> {
29

    
30
    @Override
31
    @Autowired
32
    public void setService(IPolytomousKeyNodeService service) {
33
        this.service = service;
34
    }
35
}
(47-47/76)