Project

General

Profile

Download (832 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 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

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

    
12
import io.swagger.annotations.Api;
13

    
14
import org.springframework.stereotype.Controller;
15
import org.springframework.transaction.annotation.Transactional;
16
import org.springframework.web.bind.annotation.RequestMapping;
17

    
18
@Controller
19
@Api("portal_descriptionElement")
20
@Transactional(readOnly=true)
21
@RequestMapping(value = {
22
            "/portal/descriptionElement/{uuid}",
23
            "/portal/descriptionElement/{uuid_list}"
24
            })
25
public class DescriptionElementPortalController extends DescriptionElementController
26
{
27

    
28
}
(22-22/75)