Project

General

Profile

Download (1.04 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * Copyright (C) 2009 EDIT European Distributed Institute of Taxonomy
3
 * http://www.e-taxonomy.eu
4
 *
5
 * The contents of this file are subject to the Mozilla Public License Version
6
 * 1.1 See LICENSE.TXT at the top of this package for the full license terms.
7
 */
8

    
9
package eu.etaxonomy.cdm.remote.controller;
10

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

    
15
import eu.etaxonomy.cdm.api.service.IReferenceService;
16
import eu.etaxonomy.cdm.model.reference.Reference;
17
import io.swagger.annotations.Api;
18

    
19
/**
20
 * TODO write controller documentation
21
 *
22
 * @author a.kohlbecker
23
 * @since 24.03.2009
24
 */
25
@Controller
26
@Api("reference")
27
@RequestMapping(value = {"/reference"})
28
public class ReferenceListController extends AbstractIdentifiableListController<Reference, IReferenceService> {
29

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

    
36
}
(52-52/76)