Engine startup
This commit is contained in:
parent
5d3e56754f
commit
6c664bb6d3
|
@ -2,21 +2,24 @@ package org.gcube.application.geoportal.service;
|
|||
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.gcube.application.cms.implementations.ImplementationProvider;
|
||||
import org.gcube.smartgears.ApplicationManager;
|
||||
|
||||
|
||||
@Slf4j
|
||||
public class AppManager implements ApplicationManager {
|
||||
public class AppManager{}
|
||||
//TODO ASK Lucio
|
||||
|
||||
|
||||
|
||||
@Override
|
||||
public void onInit() {
|
||||
ImplementationProvider.get().initEngines();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onShutdown() {
|
||||
ImplementationProvider.get().shutdownEngines();
|
||||
}
|
||||
|
||||
}
|
||||
//implements ApplicationManager {
|
||||
//
|
||||
//
|
||||
//
|
||||
// @Override
|
||||
// public void onInit() {
|
||||
// ImplementationProvider.get().initEngines();
|
||||
// }
|
||||
//
|
||||
// @Override
|
||||
// public void onShutdown() {
|
||||
// ImplementationProvider.get().shutdownEngines();
|
||||
// }
|
||||
//
|
||||
//}
|
||||
|
|
Loading…
Reference in New Issue