com.google.api.HttpOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of irita-sdk Show documentation
Show all versions of irita-sdk Show documentation
Irita open alliance chain SDK (java)
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/api/http.proto
package com.google.api;
public interface HttpOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.api.Http)
com.google.protobuf.MessageOrBuilder {
/**
*
* A list of HTTP configuration rules that apply to individual API methods.
* **NOTE:** All service configuration rules follow "last one wins" order.
*
*
* repeated .google.api.HttpRule rules = 1;
*/
java.util.List
getRulesList();
/**
*
* A list of HTTP configuration rules that apply to individual API methods.
* **NOTE:** All service configuration rules follow "last one wins" order.
*
*
* repeated .google.api.HttpRule rules = 1;
*/
com.google.api.HttpRule getRules(int index);
/**
*
* A list of HTTP configuration rules that apply to individual API methods.
* **NOTE:** All service configuration rules follow "last one wins" order.
*
*
* repeated .google.api.HttpRule rules = 1;
*/
int getRulesCount();
/**
*
* A list of HTTP configuration rules that apply to individual API methods.
* **NOTE:** All service configuration rules follow "last one wins" order.
*
*
* repeated .google.api.HttpRule rules = 1;
*/
java.util.List extends com.google.api.HttpRuleOrBuilder>
getRulesOrBuilderList();
/**
*
* A list of HTTP configuration rules that apply to individual API methods.
* **NOTE:** All service configuration rules follow "last one wins" order.
*
*
* repeated .google.api.HttpRule rules = 1;
*/
com.google.api.HttpRuleOrBuilder getRulesOrBuilder(
int index);
/**
*
* When set to true, URL path parmeters will be fully URI-decoded except in
* cases of single segment matches in reserved expansion, where "%2F" will be
* left encoded.
* The default behavior is to not decode RFC 6570 reserved characters in multi
* segment matches.
*
*
* bool fully_decode_reserved_expansion = 2;
* @return The fullyDecodeReservedExpansion.
*/
boolean getFullyDecodeReservedExpansion();
}