All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.ydb.auth.AuthProvider Maven / Gradle / Ivy

package tech.ydb.auth;

/**
 * Provides AuthIdentity instances for use in the operation of the YDB transport layer.
 */
public interface AuthProvider extends AuthRpcProvider {
    /**
     * Create new instance of AuthIdentity
     * @return new instance of AuthIdentity
     */
    AuthIdentity createAuthIdentity();

    @Override
    default AuthIdentity createAuthIdentity(Object rpc) {
        return createAuthIdentity();
    }
}