Package com.google.api.servicecontrol.v2
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 Deprecated Methods Modifier and Type Method Description boolean
containsHeaders(String key)
Returns a set of request contexts generated from the `CheckRequest`.Map<String,String>
getHeaders()
Deprecated.int
getHeadersCount()
Returns a set of request contexts generated from the `CheckRequest`.Map<String,String>
getHeadersMap()
Returns a set of request contexts generated from the `CheckRequest`.String
getHeadersOrDefault(String key, String defaultValue)
Returns a set of request contexts generated from the `CheckRequest`.String
getHeadersOrThrow(String key)
Returns a set of request contexts generated from the `CheckRequest`.com.google.rpc.Status
getStatus()
Operation is allowed when this field is not set.com.google.rpc.StatusOrBuilder
getStatusOrBuilder()
Operation is allowed when this field is not set.boolean
hasStatus()
Operation is allowed when this field is not set.-
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()
Operation is allowed when this field is not set. Any non-'OK' status indicates a denial; [google.rpc.Status.details][google.rpc.Status.details] would contain additional details about the denial.
.google.rpc.Status status = 1;
- Returns:
- Whether the status field is set.
-
getStatus
com.google.rpc.Status getStatus()
Operation is allowed when this field is not set. Any non-'OK' status indicates a denial; [google.rpc.Status.details][google.rpc.Status.details] would contain additional details about the denial.
.google.rpc.Status status = 1;
- Returns:
- The status.
-
getStatusOrBuilder
com.google.rpc.StatusOrBuilder getStatusOrBuilder()
Operation is allowed when this field is not set. Any non-'OK' status indicates a denial; [google.rpc.Status.details][google.rpc.Status.details] would contain additional details about the denial.
.google.rpc.Status status = 1;
-
getHeadersCount
int getHeadersCount()
Returns a set of request contexts generated from the `CheckRequest`.
map<string, string> headers = 2;
-
containsHeaders
boolean containsHeaders(String key)
Returns a set of request contexts generated from the `CheckRequest`.
map<string, string> headers = 2;
-
getHeaders
@Deprecated Map<String,String> getHeaders()
Deprecated.UsegetHeadersMap()
instead.
-
getHeadersMap
Map<String,String> getHeadersMap()
Returns a set of request contexts generated from the `CheckRequest`.
map<string, string> headers = 2;
-
getHeadersOrDefault
String getHeadersOrDefault(String key, String defaultValue)
Returns a set of request contexts generated from the `CheckRequest`.
map<string, string> headers = 2;
-
-