Implemented to get several RedList Status from different related concepts
[cdmlib.git] / cdmlib-remote / src / main / java / eu / etaxonomy / cdm / remote / controller / PolytomousKeyController.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.remote.controller;
11
12 import org.apache.log4j.Logger;
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.IPolytomousKeyService;
18 import eu.etaxonomy.cdm.model.description.PolytomousKey;
19
20 /**
21 * @author a.kohlbecker
22 * @date 24.03.2011
23 *
24 */
25 @Controller
26 @RequestMapping(value = {"/polytomousKey/{uuid}"})
27 public class PolytomousKeyController extends BaseController<PolytomousKey, IPolytomousKeyService> {
28 public static final Logger logger = Logger.getLogger(PolytomousKeyController.class);
29
30 @Autowired
31 public void setService(IPolytomousKeyService service) {
32 this.service = service;
33 }
34
35 }
36