Project

General

Profile

Download (818 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2020 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.springframework.stereotype.Controller;
12
import org.springframework.web.bind.annotation.RequestMapping;
13

    
14
import io.swagger.annotations.Api;
15

    
16
/**
17
 * @author a.kohlbecker
18
 * @since May 27, 2020
19
 */
20
@Controller
21
@Api(value = "agent")
22
@RequestMapping(value = {"/portal/agent"})
23
public class AgentPortalListController extends AgentListController {
24

    
25
    public AgentPortalListController() {
26
        super();
27
        setInitializationStrategy(AgentPortalController.TEAM_OR_PERSON_BASE_INIT_STRATEGY);
28
    }
29

    
30
}
(8-8/76)