org.mariadb.jdbc.plugin.tls.TlsSocketPluginLoader Maven / Gradle / Ivy
// SPDX-License-Identifier: LGPL-2.1-or-later
// Copyright (c) 2012-2014 Monty Program Ab
// Copyright (c) 2015-2023 MariaDB Corporation Ab
package org.mariadb.jdbc.plugin.tls;
import java.sql.SQLException;
import java.util.ServiceLoader;
import org.mariadb.jdbc.Driver;
import org.mariadb.jdbc.plugin.TlsSocketPlugin;
import org.mariadb.jdbc.plugin.tls.main.DefaultTlsSocketPlugin;
/** TLS plugin loader */
public final class TlsSocketPluginLoader {
/**
* Get authentication plugin from type String. Customs authentication plugin can be added
* implementing AuthenticationPlugin and registering new type in resources services.
*
* @param type authentication plugin type
* @return Authentication plugin corresponding to type
* @throws SQLException if no authentication plugin in classpath have indicated type
*/
public static TlsSocketPlugin get(String type) throws SQLException {
if (type == null) return new DefaultTlsSocketPlugin();
ServiceLoader loader =
ServiceLoader.load(TlsSocketPlugin.class, Driver.class.getClassLoader());
for (TlsSocketPlugin implClass : loader) {
if (type.equals(implClass.type())) {
return implClass;
}
}
throw new SQLException(
"Client has not found any TLS factory plugin with name '" + type + "'.", "08004", 1251);
}
}