Package org.jitterbit.integration.server.db.trandb

Examples of org.jitterbit.integration.server.db.trandb.KeyValuesTab


        return guid;
    }

    private ServerGuid lookupGuidFromDatabase() throws ServerConfigurationException {
        try {
            KeyValuesTab keyValues = new KeyValuesTab(tranDbConnection);
            String guid = keyValues.getValueForKey("ServerGUID");
            if (guid == null) {
                throw new ServerConfigurationException("The ServerGUID has not been set in the backend database.");
            }
            return new ServerGuid(guid);
        } catch (SQLException ex) {
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.server.db.trandb.KeyValuesTab

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.