Project

General

Profile

Download (1.16 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 org.apache.log4j.Logger;
12
import org.springframework.beans.factory.annotation.Autowired;
13
import org.springframework.stereotype.Controller;
14
import org.springframework.web.bind.annotation.RequestMapping;
15

    
16
import eu.etaxonomy.cdm.api.service.IPolytomousKeyService;
17
import eu.etaxonomy.cdm.model.description.PolytomousKey;
18
import io.swagger.annotations.Api;
19

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

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

    
37
}
38

    
(45-45/66)