Project

General

Profile

1 49236 panagiotis
/*
2
package eu.dnetlib.repo.manager.api.application.rest;
3
4
import eu.dnetlib.domain.data.RepositoryInterface;
5
import eu.dnetlib.gwt.shared.Help;
6
import org.springframework.http.MediaType;
7
import org.springframework.web.bind.annotation.RequestMapping;
8
import org.springframework.web.bind.annotation.RequestMethod;
9
import org.springframework.web.bind.annotation.RestController;
10
11
@RestController
12
@RequestMapping(value = "/help")
13
public interface HelpApi {
14
15
    @RequestMapping(value = "/getHelpById/{id}", method = RequestMethod.GET,
16
            produces = MediaType.APPLICATION_JSON_VALUE)
17
    Help getHelpById(String id) ;
18
19
}
20
*/