ref #6964 base implementation of the RegistrationController
[cdmlib.git] / cdmlib-remote / src / main / java / eu / etaxonomy / cdm / remote / controller / DescriptionElementPortalController.java
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 }