001// Generated by the protocol buffer compiler. DO NOT EDIT! 002// source: mqtt3_auth_types.proto 003 004// Protobuf Java Version: 3.25.5 005package com.baidu.bifromq.plugin.authprovider.type; 006 007public interface MQTT3AuthResultOrBuilder extends 008 // @@protoc_insertion_point(interface_extends:mqtt3authtypes.MQTT3AuthResult) 009 com.google.protobuf.MessageOrBuilder { 010 011 /** 012 * <code>.mqtt3authtypes.Ok ok = 1;</code> 013 * @return Whether the ok field is set. 014 */ 015 boolean hasOk(); 016 /** 017 * <code>.mqtt3authtypes.Ok ok = 1;</code> 018 * @return The ok. 019 */ 020 com.baidu.bifromq.plugin.authprovider.type.Ok getOk(); 021 /** 022 * <code>.mqtt3authtypes.Ok ok = 1;</code> 023 */ 024 com.baidu.bifromq.plugin.authprovider.type.OkOrBuilder getOkOrBuilder(); 025 026 /** 027 * <code>.mqtt3authtypes.Reject reject = 2;</code> 028 * @return Whether the reject field is set. 029 */ 030 boolean hasReject(); 031 /** 032 * <code>.mqtt3authtypes.Reject reject = 2;</code> 033 * @return The reject. 034 */ 035 com.baidu.bifromq.plugin.authprovider.type.Reject getReject(); 036 /** 037 * <code>.mqtt3authtypes.Reject reject = 2;</code> 038 */ 039 com.baidu.bifromq.plugin.authprovider.type.RejectOrBuilder getRejectOrBuilder(); 040 041 com.baidu.bifromq.plugin.authprovider.type.MQTT3AuthResult.TypeCase getTypeCase(); 042}