Examples of DriverDescriptorVisitor


Examples of org.jitterbit.integration.database.driver.DriverDescriptorVisitor

     *            the <code>Persistor</code> in which to store the driver data.
     * @throws NullPointerException
     *             if <code>driver</code> or <code>persistor</code> is <code>null</code>.
     */
    public static void persist(DriverDescriptor driver, Persistor persistor) {
        DriverDescriptorVisitor visitor = new PersistorVisitor(persistor);
        driver.accept(visitor);
    }
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.