Project

General

Profile

Download (1.15 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.apache.log4j.Logger;
15
import org.springframework.beans.factory.annotation.Autowired;
16
import org.springframework.stereotype.Controller;
17
import org.springframework.web.bind.annotation.RequestMapping;
18

    
19
import eu.etaxonomy.cdm.api.service.IPolytomousKeyService;
20
import eu.etaxonomy.cdm.model.description.PolytomousKey;
21

    
22
/**
23
 * @author a.kohlbecker
24
 * @date 24.03.2011
25
 *
26
 */
27
@Controller
28
@Api("polytomousKey")
29
@RequestMapping(value = {"/polytomousKey/{uuid}"})
30
public class PolytomousKeyController extends BaseController<PolytomousKey, IPolytomousKeyService> {
31
    public static final Logger logger = Logger.getLogger(PolytomousKeyController.class);
32

    
33
    @Override
34
    @Autowired
35
    public void setService(IPolytomousKeyService service) {
36
        this.service = service;
37
    }
38

    
39
}
40

    
(44-44/63)