Package org.jitterbit.integration.client.plugin.serverapi

Examples of org.jitterbit.integration.client.plugin.serverapi.PipelinePluginInfoProvider


            }
        }

        private void refresh() {
            IntegrationServer server = IntegrationServer.getInstance();
            PipelinePluginInfoProvider provider = server.getServerCall(PipelinePluginInfoProvider.class);
            PipelinePluginCacheUpdateCall call = new PipelinePluginCacheUpdateCall(getServerCache(), provider);
            call.setErrorHandler(this);
            call.call();
        }
View Full Code Here


            }));
        }

        private PipelinePluginCacheUpdateCall createUpdateCall() {
            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);
View Full Code Here

    @Override
    protected void runImpl() throws InterruptedException {
        setMessage(getString("RequiredPluginsView.Check.Job.Start"));
        IntegrationServer server = IntegrationServer.getInstance();
        PipelinePluginInfoProvider p = server.getServerCall(PipelinePluginInfoProvider.class);
        p.downloadPluginManifests(callback);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.plugin.serverapi.PipelinePluginInfoProvider

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.