tech.ydb.core.auth.TokenAuthProvider 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;
/**
* @deprecated
* Use {@link tech.ydb.auth.TokenAuthProvider} instead.
*/
@Deprecated
public class TokenAuthProvider extends tech.ydb.auth.TokenAuthProvider {
public TokenAuthProvider(String token) {
super(token);
}
}