Package org.jitterbit.integration.client.server

Examples of org.jitterbit.integration.client.server.IntegrationServer


        ExpressionParser parser = new ExpressionParser(model.getSource());
        functionInserterLookup.setExpressionParser(parser);
    }

    private TestScriptProvider getTestProvider() {
        IntegrationServer server = IntegrationServer.getInstance();
        return server.getServerCall(TestScriptProvider.class);
    }
View Full Code Here


        });
        activityMonitorControl.start(opInstanceId);
    }

    private OperationActivityMonitor createMonitor() {
        IntegrationServer server = IntegrationServer.getInstance();
        OperationActivityMonitor monitor = new OperationActivityMonitor(server.getServerCall(OperationLogProvider.class),
                        server.getServerCall(OperationQueueProvider.class));
        if (progressProvider !=  null) {
            monitor.trackProgress(progressProvider);
        }
        return monitor;
    }
View Full Code Here

            setMessage("Running the test on the server");
        }

        @Override
        protected void runImpl() throws InterruptedException {
            IntegrationServer server = IntegrationServer.getInstance();
            TestScriptProvider call = server.getServerCall(TestScriptProvider.class);
            call.testExpression(session, model.getExpressionToTest(), callback);
        }
View Full Code Here

        }

        @Override
        protected void runImpl() throws InterruptedException {
            setMessage("Retrieving info from the server");
            IntegrationServer server = IntegrationServer.getInstance();
            UserAdmin call = server.getServerCall(UserAdmin.class);
            call.getUsersAndGroups(FetchJob.this, includePasswords);
        }
View Full Code Here

* @since 1.3.0
*/
public final class XmlStructureMappingTreeConverter {

    public MappingTreeStructure convert(XmlStructure xml, boolean isTarget, CallbackResult callback) {
        IntegrationServer server = IntegrationServer.getInstance();
        TreeMapperInfoProvider call = server.getServerCall(TreeMapperInfoProvider.class);
        DefaultMappingStructureCallback cb = new DefaultMappingStructureCallback(callback);
        call.getJtrForStructure(xml.getFilePath(), xml.getRootNodeName(), isTarget, cb);
        return cb.getMappingStructure();
    }
View Full Code Here

        this.errorHandler = errorHandler;
    }

    public void initializeIntegrationServer() {
        try {
            IntegrationServer server = IntegrationServer.getInstance();
            IntegrationServerConfiguration initializer = IntegrationServerConfiguration.getInstance();
            initializer.configure(server);
        } catch (IntegrationServerConfigurationException ex) {
            fatalExceptionOccurred("initializeIntegrationServer",
                    FatalConfigurationError.SERVER_INITIALIZATION, ex);
View Full Code Here

    }

    @Override
    protected void runImpl() throws InterruptedException {
        setMessage(getString("LoadSource.Job.SendToServer"));
        IntegrationServer server = IntegrationServer.getInstance();
        LoadSourceDataProvider call = server.getServerCall(LoadSourceDataProvider.class);
        call.loadSourceDataTree(input, transformationId, LoadSourceDataJob.this);
    }
View Full Code Here

        private DatabaseInfoProvider provider;

        @Override
        public void visit(JdbcDriverDescriptor driver) {
            IntegrationServer server = IntegrationServer.getInstance();
            provider = server.getServerCall(JdbcInfoProvider.class);
        }
View Full Code Here

            provider = server.getServerCall(JdbcInfoProvider.class);
        }

        @Override
        public void visit(OdbcDriverDescriptor driver) {
            IntegrationServer server = IntegrationServer.getInstance();
            provider = server.getServerCall(OdbcInfoProvider.class);
        }
View Full Code Here

    private Runnable createStopJob() {
        return new ApplicationWorker.SafeRunnable() {

            @Override
            public void run() {
                IntegrationServer server = IntegrationServer.getInstance();
                ServerTestCall call = server.getServerCall(serverCallClass);
                call.stopTest(session);
            }
        };
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.server.IntegrationServer

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.