/
githubmirror
/
ydb-java-sdk
Обзор
Документация
Войти
/
githubmirror
/
ydb-java-sdk
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
auth-api/src/main/java/tech/ydb/auth/AuthProvider.java
17 строк
444 B
Alexandr Gorshenin
Revert old classes as depracated synonyms of the new classes
18 ноя 2022, 16:41
18 ноя 2022, 16:41
e7e5cf5
Код
Авторство
О чём код?
package tech.ydb.auth; /** * Provides AuthIdentity instances for use in the operation of the YDB transport layer. */ public interface AuthProvider extends AuthRpcProvider<Object> { /** * Create new instance of AuthIdentity * @return new instance of AuthIdentity */ AuthIdentity createAuthIdentity(); @Override default AuthIdentity createAuthIdentity(Object rpc) { return createAuthIdentity(); } }