/
githubmirror
/
ydb-java-sdk
Обзор
Документация
Войти
/
githubmirror
/
ydb-java-sdk
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
auth-api/src/main/java/tech/ydb/auth/AuthRpcProvider.java
15 строк
449 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. * * @param <T> Optional type specification for a transport-provided helper. */ public interface AuthRpcProvider<T> { /** * Create new instance of AuthIdentity * @param rpc helper provided by a transport implementation * @return new instance of AuthIdentity */ AuthIdentity createAuthIdentity(T rpc); }