001// Generated by the protocol buffer compiler. DO NOT EDIT! 002// source: mqtt_actions.proto 003 004// Protobuf Java Version: 3.25.5 005package com.baidu.bifromq.plugin.authprovider.type; 006 007public interface CheckResultOrBuilder extends 008 // @@protoc_insertion_point(interface_extends:checktypes.CheckResult) 009 com.google.protobuf.MessageOrBuilder { 010 011 /** 012 * <code>.checktypes.Granted granted = 1;</code> 013 * @return Whether the granted field is set. 014 */ 015 boolean hasGranted(); 016 /** 017 * <code>.checktypes.Granted granted = 1;</code> 018 * @return The granted. 019 */ 020 com.baidu.bifromq.plugin.authprovider.type.Granted getGranted(); 021 /** 022 * <code>.checktypes.Granted granted = 1;</code> 023 */ 024 com.baidu.bifromq.plugin.authprovider.type.GrantedOrBuilder getGrantedOrBuilder(); 025 026 /** 027 * <code>.checktypes.Denied denied = 2;</code> 028 * @return Whether the denied field is set. 029 */ 030 boolean hasDenied(); 031 /** 032 * <code>.checktypes.Denied denied = 2;</code> 033 * @return The denied. 034 */ 035 com.baidu.bifromq.plugin.authprovider.type.Denied getDenied(); 036 /** 037 * <code>.checktypes.Denied denied = 2;</code> 038 */ 039 com.baidu.bifromq.plugin.authprovider.type.DeniedOrBuilder getDeniedOrBuilder(); 040 041 /** 042 * <code>.checktypes.Error error = 3;</code> 043 * @return Whether the error field is set. 044 */ 045 boolean hasError(); 046 /** 047 * <code>.checktypes.Error error = 3;</code> 048 * @return The error. 049 */ 050 com.baidu.bifromq.plugin.authprovider.type.Error getError(); 051 /** 052 * <code>.checktypes.Error error = 3;</code> 053 */ 054 com.baidu.bifromq.plugin.authprovider.type.ErrorOrBuilder getErrorOrBuilder(); 055 056 com.baidu.bifromq.plugin.authprovider.type.CheckResult.TypeCase getTypeCase(); 057}