Package org.jitterbit.integration.client.server

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


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

        @Override
        protected void runImpl() throws InterruptedException {
            IntegrationServer server = IntegrationServer.getInstance();
            ServerTestCall call = server.getServerCall(serverCallClass);
            call.resumeTest(session, callback);
        }
View Full Code Here


    @Override
    protected void runImpl() throws InterruptedException {
        setMessage(Strings.get("UserProfile.Upload.Started"));
        Thread.sleep(500);
        IntegrationServer server = IntegrationServer.getInstance();
        UserAdmin call = server.getServerCall(UserAdmin.class);
        call.setUserInfo(user, callback);
    }
View Full Code Here

    @Override
    protected void runImpl() throws InterruptedException {
        setMessage(Strings.get("UserProfile.Download.Started"));
        Thread.sleep(500);
        IntegrationServer server = IntegrationServer.getInstance();
        UserAdmin call = server.getServerCall(UserAdmin.class);
        call.getUserInfo(callback);
    }
View Full Code Here

                        new Object[] { serverInfo.getName(), th.getMessage() });
        ErrorLog.log(DriverCacheRefresher.class, msg, th);
    }

    private void getOdbcDrivers() {
        IntegrationServer server = IntegrationServer.getInstance();
        OdbcInfoProvider call = server.getServerCall(OdbcInfoProvider.class);
        call.getDrivers(this);
    }
View Full Code Here

        OdbcInfoProvider call = server.getServerCall(OdbcInfoProvider.class);
        call.getDrivers(this);
    }

    private void getJdbcDrivers() {
        IntegrationServer server = IntegrationServer.getInstance();
        JdbcInfoProvider call = server.getServerCall(JdbcInfoProvider.class);
        call.getDrivers(this);
    }
View Full Code Here

* @since 1.3.0
*/
public final class LdapStructureMappingTreeConverter {

    public MappingTreeStructure convert(LdapStructure ldap, boolean isTarget, CallbackResult callback) {
        IntegrationServer server = IntegrationServer.getInstance();
        LdapInfoProvider provider = server.getServerCall(LdapInfoProvider.class);
        DefaultMappingStructureCallback cb = new DefaultMappingStructureCallback(callback);
        provider.getLdapMappingStructure(ldap, isTarget, cb);
        return cb.getMappingStructure();
    }
View Full Code Here

* @since 1.3.0
*/
public final class RequestStructureMappingTreeConverter {

    public MappingTreeStructure convert(WebServiceRequestStructure req, boolean isTarget, CallbackResult callback) {
        IntegrationServer server = IntegrationServer.getInstance();
        TreeMapperInfoProvider infoProvider = server.getServerCall(TreeMapperInfoProvider.class);
        DefaultMappingStructureCallback cb = new DefaultMappingStructureCallback(callback);
        WebServiceOperationInfo opInfo = req.getOpInfo();
        WebServiceOperationIdentifier opId = new WebServiceOperationIdentifier(
                        opInfo.getProperty(WebServiceOperationInfo.OPERATION_NAME),
                        opInfo.getProperty(WebServiceOperationInfo.INPUT_NAME),
View Full Code Here

public final class ResponseStructureMappingTreeConverter {

    public MappingTreeStructure convert(WebServiceResponseStructure response,
                                        boolean isTarget,
                                        CallbackResult callback) {
        IntegrationServer server = IntegrationServer.getInstance();
        TreeMapperInfoProvider infoProvider = server.getServerCall(TreeMapperInfoProvider.class);
        DefaultMappingStructureCallback cb = new DefaultMappingStructureCallback(callback);
        WebServiceOperationInfo opInfo = response.getOpInfo();
        WebServiceOperationIdentifier opId = new WebServiceOperationIdentifier(
                        opInfo.getProperty(WebServiceOperationInfo.OPERATION_NAME),
                        opInfo.getProperty(WebServiceOperationInfo.INPUT_NAME),
View Full Code Here

* @since 4.1.0
*/
public final class JsonStructureMappingTreeConverter {

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

            return result;
        }

        @Override
        protected void makeServerCall() {
            IntegrationServer server = IntegrationServer.getInstance();
            SourceConnectionTester call = server.getServerCall(SourceConnectionTester.class);
            call.testTemporaryStorage(source, location, this);
        }
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.