tech.ydb.core.auth.AuthProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ydb-sdk-core Show documentation
Show all versions of ydb-sdk-core Show documentation
Core module of Java SDK for YDB
package tech.ydb.core.auth;
import tech.ydb.auth.AuthRpcProvider;
/**
* @deprecated
* Use {@link tech.ydb.auth.AuthProvider} instead.
*/
@Deprecated
public interface AuthProvider extends AuthRpcProvider {
@Override
AuthIdentity createAuthIdentity(AuthRpc rpc);
}