org.mariadb.jdbc.plugin.credential.CredentialPluginLoader 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
The newest version!
// SPDX-License-Identifier: LGPL-2.1-or-later
// Copyright (c) 2012-2014 Monty Program Ab
// Copyright (c) 2015-2024 MariaDB Corporation Ab
package org.mariadb.jdbc.plugin.credential;
import java.sql.SQLException;
import java.util.ServiceLoader;
import org.mariadb.jdbc.Driver;
import org.mariadb.jdbc.plugin.CredentialPlugin;
/**
* Provider to handle plugin authentication. This can allow library users to override our default
* Authentication provider.
*/
public final class CredentialPluginLoader {
/**
* Get current Identity plugin according to option `identityType`.
*
* @param type identity plugin type
* @return identity plugin
* @throws SQLException if no identity plugin found with this type is in classpath
*/
public static CredentialPlugin get(String type) throws SQLException {
if (type == null) return null;
ServiceLoader loader =
ServiceLoader.load(CredentialPlugin.class, Driver.class.getClassLoader());
for (CredentialPlugin implClass : loader) {
if (type.equals(implClass.type())) {
return implClass;
}
}
throw new SQLException(
"No identity plugin registered with the type \"" + type + "\".", "08004", 1251);
}
}