Project

General

Profile

1
package eu.dnetlib.functionality.modular.ui.mdstore;
2

    
3
import eu.dnetlib.enabling.locators.UniqueServiceLocator;
4
import eu.dnetlib.functionality.modular.ui.ModuleEntryPoint;
5
import org.springframework.ui.ModelMap;
6

    
7
import javax.annotation.Resource;
8
import javax.servlet.http.HttpServletRequest;
9
import javax.servlet.http.HttpServletResponse;
10

    
11
/**
12
 * Created by sandro on 6/27/17.
13
 */
14
public class MDStoreServiceEntryPointController extends ModuleEntryPoint {
15

    
16
    /** The lookup locator. */
17
    @Resource
18
    private UniqueServiceLocator serviceLocator;
19

    
20
    @Override
21
    protected void initialize(final ModelMap map, final HttpServletRequest request, final HttpServletResponse response) throws Exception {
22

    
23
    }
24

    
25
}
(1-1/2)