Package com.google.api
Interface SystemParameterOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SystemParameter,SystemParameter.Builder
public interface SystemParameterOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetHttpHeader()Define the HTTP header name to use for the parameter.com.google.protobuf.ByteStringgetHttpHeaderBytes()Define the HTTP header name to use for the parameter.StringgetName()Define the name of the parameter, such as "api_key" .com.google.protobuf.ByteStringgetNameBytes()Define the name of the parameter, such as "api_key" .StringgetUrlQueryParameter()Define the URL query parameter name to use for the parameter.com.google.protobuf.ByteStringgetUrlQueryParameterBytes()Define the URL query parameter name to use for the parameter.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
Define the name of the parameter, such as "api_key" . It is case sensitive.
string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Define the name of the parameter, such as "api_key" . It is case sensitive.
string name = 1;- Returns:
- The bytes for name.
-
getHttpHeader
String getHttpHeader()
Define the HTTP header name to use for the parameter. It is case insensitive.
string http_header = 2;- Returns:
- The httpHeader.
-
getHttpHeaderBytes
com.google.protobuf.ByteString getHttpHeaderBytes()
Define the HTTP header name to use for the parameter. It is case insensitive.
string http_header = 2;- Returns:
- The bytes for httpHeader.
-
getUrlQueryParameter
String getUrlQueryParameter()
Define the URL query parameter name to use for the parameter. It is case sensitive.
string url_query_parameter = 3;- Returns:
- The urlQueryParameter.
-
getUrlQueryParameterBytes
com.google.protobuf.ByteString getUrlQueryParameterBytes()
Define the URL query parameter name to use for the parameter. It is case sensitive.
string url_query_parameter = 3;- Returns:
- The bytes for urlQueryParameter.
-
-