Package org.jitterbit.integration.client.datalocation.connection

Examples of org.jitterbit.integration.client.datalocation.connection.HttpConnectionTester


        case TemporaryStorage:
            return new TemporaryStorageConnectionTester((TemporaryStorageLocation) loc);
        case FTP:
            return new FtpConnectionTester((FtpLocation) loc);
        case HTTP:
            return new HttpConnectionTester((HttpLocation) loc);
        case JMS:
            return new JmsConnectionTester((JmsLocation) loc);
        case LDAP:
            return new LdapConnectionTester((LdapLocation) loc);
        default:
View Full Code Here


            tester.setProgressMonitor(progressMonitor);
            return tester;
        }

        private ConnectionTester visit(HttpLocation loc) {
            HttpConnectionTester tester = new HttpConnectionTester(loc);
            class Callback extends CallbackBase implements HttpSourceConnectionCallback {

                @Override
                public void connected(List<String> matchingFiles) {
                    AllLocationsTester.this.connectionSucceeded();
                }
            }
            tester.setSourceConnectionCallback(new Callback());
            tester.setProgressMonitor(progressMonitor);
            return tester;
        }
View Full Code Here

            tester.setProgressMonitor(progressMonitor);
            return tester;
        }

        private ConnectionTester visit(HttpLocation loc) {
            HttpConnectionTester tester = new HttpConnectionTester(loc);
            class Callback extends CallbackBase implements HttpTargetConnectionCallback {

                @Override
                public void connected() {
                    AllLocationsTester.this.connectionSucceeded();
                }
            }
            tester.setTargetConnectionCallback(new Callback());
            tester.setProgressMonitor(progressMonitor);
            return tester;
        }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.datalocation.connection.HttpConnectionTester

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.