/
githubmirror
/
ydb-java-sdk
Обзор
Документация
Войти
/
githubmirror
/
ydb-java-sdk
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
auth-api/src/main/java/tech/ydb/auth/NopAuthProvider.java
17 строк
354 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; /** * Implementation of AuthProvider for anonymous connections */ public class NopAuthProvider implements AuthProvider { public static final NopAuthProvider INSTANCE = new NopAuthProvider(); protected NopAuthProvider() { } @Override public AuthIdentity createAuthIdentity() { return null; } }