IntegrationServer server = IntegrationServer.getInstance();
PipelinePluginInfoProvider provider = server.getServerCall(PipelinePluginInfoProvider.class);
ExceptionHandler<Throwable> errorHandler = new LoggingExceptionHandler(ControllerImpl.class,
ErrorLevel.ATTENTION,
PluginUiResources.getString("PipelinePlugin.Error.UpdateAvailablePlugins"));
PipelinePluginCacheUpdateCall call = new PipelinePluginCacheUpdateCall(serverCache, provider);
call.setErrorHandler(errorHandler);
return call;
}