Examples of WsDatabaseInfo


Examples of org.jitterbit.integration.server.implementation.webservice.interchange.db.client.WsDatabaseInfo

            if( dbInfo == null ) {
                // The callback has already been notified.
                return;
            }
            String[] typeNames = Utils.getTypeNames(searchFilter, DriverType.ODBC);
            WsDatabaseInfo dbInfoHolder = dbInfo.getDatabaseObjects(userName, password,
                    params.getDriverName(), params.getConnectionString(),
                    toString(sourceId), toString(targetId), typeNames, searchFilter.getSearchString());
            DatabaseObjectContainer[] containers = convertObjectInfo(dbInfoHolder);
            BeginEndQuote quotes = new BeginEndQuote(dbInfoHolder.getQuoteBegin(), dbInfoHolder.getQuoteEnd());
            callback.objectsRetrieved(containers, quotes);
        } catch (RemoteException e) {
            callback.caught(convert(e));
        } catch (IntegrationServerException e) {
            callback.caught(new IntegrationServerException("Server exception: " + e.getMessage(), e));
View Full Code Here

Examples of org.jitterbit.integration.server.implementation.webservice.interchange.db.client.WsDatabaseInfo

            if( dbInfo == null ) {
                // The callback has already been notified.
                return;
            }
            WsDatabaseObject[] wsTables = transform(tables, WsDatabaseObject.class, TO_WS_TABLES);
            WsDatabaseInfo dbInfoHolder = dbInfo.getTableInfo(userName, password,
                    params.getDriverName(), params.getConnectionString(),
                    toString(sourceId), toString(targetId), wsTables);
            DatabaseObjectContainer[] containers = convertObjectInfo(dbInfoHolder);
            if (Thread.currentThread().isInterrupted()) {
                callback.cancelled();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.