Project

General

Profile

Download (1.06 KB) Statistics
| Branch: | Tag: | Revision:
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.remote.controller;
11

    
12
import io.swagger.annotations.Api;
13

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

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

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

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