@Override
public void afterApplicationCreated(AppInfo appInfo, WebAppInfo webApp) {
// required for Pojo Web Services because when Assembler creates the application
// the CoreContainerSystem does not contain the WebContext
// see also the start method getContainerSystem().addWebDeployment(webContext);
RESTService component = SystemInstance.get().getComponent(RESTService.class);
if (component == null) return;
component.afterApplicationCreated(appInfo, webApp);
}