Interface CheckResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CheckResponse,CheckResponse.Builder
public interface CheckResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeniedHttpResponsegetDeniedResponse()Supplies http attributes for a denied response.DeniedHttpResponseOrBuildergetDeniedResponseOrBuilder()Supplies http attributes for a denied response.CheckResponse.HttpResponseCasegetHttpResponseCase()OkHttpResponsegetOkResponse()Supplies http attributes for an ok response.OkHttpResponseOrBuildergetOkResponseOrBuilder()Supplies http attributes for an ok response.StatusgetStatus()Status `OK` allows the request.StatusOrBuildergetStatusOrBuilder()Status `OK` allows the request.booleanhasDeniedResponse()Supplies http attributes for a denied response.booleanhasOkResponse()Supplies http attributes for an ok response.booleanhasStatus()Status `OK` allows the request.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasStatus
boolean hasStatus()
Status `OK` allows the request. Any other status indicates the request should be denied.
.google.rpc.Status status = 1;- Returns:
- Whether the status field is set.
-
getStatus
Status getStatus()
Status `OK` allows the request. Any other status indicates the request should be denied.
.google.rpc.Status status = 1;- Returns:
- The status.
-
getStatusOrBuilder
StatusOrBuilder getStatusOrBuilder()
Status `OK` allows the request. Any other status indicates the request should be denied.
.google.rpc.Status status = 1;
-
hasDeniedResponse
boolean hasDeniedResponse()
Supplies http attributes for a denied response.
.envoy.service.auth.v2.DeniedHttpResponse denied_response = 2;- Returns:
- Whether the deniedResponse field is set.
-
getDeniedResponse
DeniedHttpResponse getDeniedResponse()
Supplies http attributes for a denied response.
.envoy.service.auth.v2.DeniedHttpResponse denied_response = 2;- Returns:
- The deniedResponse.
-
getDeniedResponseOrBuilder
DeniedHttpResponseOrBuilder getDeniedResponseOrBuilder()
Supplies http attributes for a denied response.
.envoy.service.auth.v2.DeniedHttpResponse denied_response = 2;
-
hasOkResponse
boolean hasOkResponse()
Supplies http attributes for an ok response.
.envoy.service.auth.v2.OkHttpResponse ok_response = 3;- Returns:
- Whether the okResponse field is set.
-
getOkResponse
OkHttpResponse getOkResponse()
Supplies http attributes for an ok response.
.envoy.service.auth.v2.OkHttpResponse ok_response = 3;- Returns:
- The okResponse.
-
getOkResponseOrBuilder
OkHttpResponseOrBuilder getOkResponseOrBuilder()
Supplies http attributes for an ok response.
.envoy.service.auth.v2.OkHttpResponse ok_response = 3;
-
getHttpResponseCase
CheckResponse.HttpResponseCase getHttpResponseCase()
-
-