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 java.lang.String
getHttpHeader()
Define the HTTP header name to use for the parameter.com.google.protobuf.ByteString
getHttpHeaderBytes()
Define the HTTP header name to use for the parameter.java.lang.String
getName()
Define the name of the parameter, such as "api_key" .com.google.protobuf.ByteString
getNameBytes()
Define the name of the parameter, such as "api_key" .java.lang.String
getUrlQueryParameter()
Define the URL query parameter name to use for the parameter.com.google.protobuf.ByteString
getUrlQueryParameterBytes()
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
java.lang.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
java.lang.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
java.lang.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.
-
-