org.mariadb.jdbc.util.ConfigurableSocketFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mariadb-java-client Show documentation
Show all versions of mariadb-java-client Show documentation
JDBC driver for MariaDB and MySQL
package org.mariadb.jdbc.util;
import javax.net.SocketFactory;
public abstract class ConfigurableSocketFactory extends SocketFactory {
public abstract void setConfiguration(Options options, String host);
}