Project

General

Profile

1 49236 panagiotis
/*
2
package eu.dnetlib.repo.manager.api.application.rest;
3
4
import eu.dnetlib.gwt.client.help.HelpServiceAsync;
5
import eu.dnetlib.gwt.shared.Help;
6
import org.springframework.beans.factory.annotation.Autowired;
7
import org.springframework.stereotype.Component;
8
import org.springframework.web.bind.annotation.PathVariable;
9
10
@Component
11
public class HelpApiImpl implements HelpApi{
12
13
    @Autowired
14
    private static HelpServiceAsync helpService;
15
16
    @Override
17
    public Help getHelpById(@PathVariable("id") String id)  {
18
        return null;
19
    }
20
21
}
22
*/