All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.ratis.thirdparty.com.google.api.Context Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/api/context.proto

package org.apache.ratis.thirdparty.com.google.api;

/**
 * 
 * `Context` defines which contexts an API requests.
 * Example:
 *     context:
 *       rules:
 *       - selector: "*"
 *         requested:
 *         - google.rpc.context.ProjectContext
 *         - google.rpc.context.OriginContext
 * The above specifies that all methods in the API request
 * `google.rpc.context.ProjectContext` and
 * `google.rpc.context.OriginContext`.
 * Available context types are defined in package
 * `google.rpc.context`.
 * This also provides mechanism to whitelist any protobuf message extension that
 * can be sent in grpc metadata using “x-goog-ext-<extension_id>-bin” and
 * “x-goog-ext-<extension_id>-jspb” format. For example, list any service
 * specific protobuf types that can appear in grpc metadata as follows in your
 * yaml file:
 * Example:
 *     context:
 *       rules:
 *        - selector: "google.example.library.v1.LibraryService.CreateBook"
 *          allowed_request_extensions:
 *          - google.foo.v1.NewExtension
 *          allowed_response_extensions:
 *          - google.foo.v1.NewExtension
 * You can also specify extension ID instead of fully qualified extension name
 * here.
 * 
* * Protobuf type {@code google.api.Context} */ public final class Context extends org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.api.Context) ContextOrBuilder { private static final long serialVersionUID = 0L; // Use Context.newBuilder() to construct. private Context(org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private Context() { rules_ = java.util.Collections.emptyList(); } @Override public final org.apache.ratis.thirdparty.com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private Context( org.apache.ratis.thirdparty.com.google.protobuf.CodedInputStream input, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new NullPointerException(); } int mutable_bitField0_ = 0; org.apache.ratis.thirdparty.com.google.protobuf.UnknownFieldSet.Builder unknownFields = org.apache.ratis.thirdparty.com.google.protobuf.UnknownFieldSet.newBuilder(); try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 10: { if (!((mutable_bitField0_ & 0x00000001) != 0)) { rules_ = new java.util.ArrayList(); mutable_bitField0_ |= 0x00000001; } rules_.add( input.readMessage(org.apache.ratis.thirdparty.com.google.api.ContextRule.parser(), extensionRegistry)); break; } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } } } } catch (org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { if (((mutable_bitField0_ & 0x00000001) != 0)) { rules_ = java.util.Collections.unmodifiableList(rules_); } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final org.apache.ratis.thirdparty.com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.apache.ratis.thirdparty.com.google.api.ContextProto.internal_static_google_api_Context_descriptor; } @Override protected FieldAccessorTable internalGetFieldAccessorTable() { return org.apache.ratis.thirdparty.com.google.api.ContextProto.internal_static_google_api_Context_fieldAccessorTable .ensureFieldAccessorsInitialized( Context.class, Builder.class); } public static final int RULES_FIELD_NUMBER = 1; private java.util.List rules_; /** *
   * A list of RPC context rules that apply to individual API methods.
   * **NOTE:** All service configuration rules follow "last one wins" order.
   * 
* * repeated .google.api.ContextRule rules = 1; */ public java.util.List getRulesList() { return rules_; } /** *
   * A list of RPC context rules that apply to individual API methods.
   * **NOTE:** All service configuration rules follow "last one wins" order.
   * 
* * repeated .google.api.ContextRule rules = 1; */ public java.util.List getRulesOrBuilderList() { return rules_; } /** *
   * A list of RPC context rules that apply to individual API methods.
   * **NOTE:** All service configuration rules follow "last one wins" order.
   * 
* * repeated .google.api.ContextRule rules = 1; */ public int getRulesCount() { return rules_.size(); } /** *
   * A list of RPC context rules that apply to individual API methods.
   * **NOTE:** All service configuration rules follow "last one wins" order.
   * 
* * repeated .google.api.ContextRule rules = 1; */ public org.apache.ratis.thirdparty.com.google.api.ContextRule getRules(int index) { return rules_.get(index); } /** *
   * A list of RPC context rules that apply to individual API methods.
   * **NOTE:** All service configuration rules follow "last one wins" order.
   * 
* * repeated .google.api.ContextRule rules = 1; */ public org.apache.ratis.thirdparty.com.google.api.ContextRuleOrBuilder getRulesOrBuilder( int index) { return rules_.get(index); } private byte memoizedIsInitialized = -1; @Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @Override public void writeTo(org.apache.ratis.thirdparty.com.google.protobuf.CodedOutputStream output) throws java.io.IOException { for (int i = 0; i < rules_.size(); i++) { output.writeMessage(1, rules_.get(i)); } unknownFields.writeTo(output); } @Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; for (int i = 0; i < rules_.size(); i++) { size += org.apache.ratis.thirdparty.com.google.protobuf.CodedOutputStream .computeMessageSize(1, rules_.get(i)); } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; } @Override public boolean equals(final Object obj) { if (obj == this) { return true; } if (!(obj instanceof Context)) { return super.equals(obj); } Context other = (Context) obj; if (!getRulesList() .equals(other.getRulesList())) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); if (getRulesCount() > 0) { hash = (37 * hash) + RULES_FIELD_NUMBER; hash = (53 * hash) + getRulesList().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static Context parseFrom( java.nio.ByteBuffer data) throws org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static Context parseFrom( java.nio.ByteBuffer data, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static Context parseFrom( org.apache.ratis.thirdparty.com.google.protobuf.ByteString data) throws org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static Context parseFrom( org.apache.ratis.thirdparty.com.google.protobuf.ByteString data, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static Context parseFrom(byte[] data) throws org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static Context parseFrom( byte[] data, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static Context parseFrom(java.io.InputStream input) throws java.io.IOException { return org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static Context parseFrom( java.io.InputStream input, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static Context parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static Context parseDelimitedFrom( java.io.InputStream input, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static Context parseFrom( org.apache.ratis.thirdparty.com.google.protobuf.CodedInputStream input) throws java.io.IOException { return org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static Context parseFrom( org.apache.ratis.thirdparty.com.google.protobuf.CodedInputStream input, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } @Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(Context prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @Override public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @Override protected Builder newBuilderForType( BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** *
   * `Context` defines which contexts an API requests.
   * Example:
   *     context:
   *       rules:
   *       - selector: "*"
   *         requested:
   *         - google.rpc.context.ProjectContext
   *         - google.rpc.context.OriginContext
   * The above specifies that all methods in the API request
   * `google.rpc.context.ProjectContext` and
   * `google.rpc.context.OriginContext`.
   * Available context types are defined in package
   * `google.rpc.context`.
   * This also provides mechanism to whitelist any protobuf message extension that
   * can be sent in grpc metadata using “x-goog-ext-<extension_id>-bin” and
   * “x-goog-ext-<extension_id>-jspb” format. For example, list any service
   * specific protobuf types that can appear in grpc metadata as follows in your
   * yaml file:
   * Example:
   *     context:
   *       rules:
   *        - selector: "google.example.library.v1.LibraryService.CreateBook"
   *          allowed_request_extensions:
   *          - google.foo.v1.NewExtension
   *          allowed_response_extensions:
   *          - google.foo.v1.NewExtension
   * You can also specify extension ID instead of fully qualified extension name
   * here.
   * 
* * Protobuf type {@code google.api.Context} */ public static final class Builder extends org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.api.Context) org.apache.ratis.thirdparty.com.google.api.ContextOrBuilder { public static final org.apache.ratis.thirdparty.com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.apache.ratis.thirdparty.com.google.api.ContextProto.internal_static_google_api_Context_descriptor; } @Override protected FieldAccessorTable internalGetFieldAccessorTable() { return org.apache.ratis.thirdparty.com.google.api.ContextProto.internal_static_google_api_Context_fieldAccessorTable .ensureFieldAccessorsInitialized( Context.class, Builder.class); } // Construct using org.apache.ratis.thirdparty.com.google.api.Context.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getRulesFieldBuilder(); } } @Override public Builder clear() { super.clear(); if (rulesBuilder_ == null) { rules_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000001); } else { rulesBuilder_.clear(); } return this; } @Override public org.apache.ratis.thirdparty.com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return org.apache.ratis.thirdparty.com.google.api.ContextProto.internal_static_google_api_Context_descriptor; } @Override public Context getDefaultInstanceForType() { return Context.getDefaultInstance(); } @Override public Context build() { Context result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @Override public Context buildPartial() { Context result = new Context(this); int from_bitField0_ = bitField0_; if (rulesBuilder_ == null) { if (((bitField0_ & 0x00000001) != 0)) { rules_ = java.util.Collections.unmodifiableList(rules_); bitField0_ = (bitField0_ & ~0x00000001); } result.rules_ = rules_; } else { result.rules_ = rulesBuilder_.build(); } onBuilt(); return result; } @Override public Builder clone() { return super.clone(); } @Override public Builder setField( org.apache.ratis.thirdparty.com.google.protobuf.Descriptors.FieldDescriptor field, Object value) { return super.setField(field, value); } @Override public Builder clearField( org.apache.ratis.thirdparty.com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @Override public Builder clearOneof( org.apache.ratis.thirdparty.com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @Override public Builder setRepeatedField( org.apache.ratis.thirdparty.com.google.protobuf.Descriptors.FieldDescriptor field, int index, Object value) { return super.setRepeatedField(field, index, value); } @Override public Builder addRepeatedField( org.apache.ratis.thirdparty.com.google.protobuf.Descriptors.FieldDescriptor field, Object value) { return super.addRepeatedField(field, value); } @Override public Builder mergeFrom(org.apache.ratis.thirdparty.com.google.protobuf.Message other) { if (other instanceof Context) { return mergeFrom((Context)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(Context other) { if (other == Context.getDefaultInstance()) return this; if (rulesBuilder_ == null) { if (!other.rules_.isEmpty()) { if (rules_.isEmpty()) { rules_ = other.rules_; bitField0_ = (bitField0_ & ~0x00000001); } else { ensureRulesIsMutable(); rules_.addAll(other.rules_); } onChanged(); } } else { if (!other.rules_.isEmpty()) { if (rulesBuilder_.isEmpty()) { rulesBuilder_.dispose(); rulesBuilder_ = null; rules_ = other.rules_; bitField0_ = (bitField0_ & ~0x00000001); rulesBuilder_ = org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? getRulesFieldBuilder() : null; } else { rulesBuilder_.addAllMessages(other.rules_); } } } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } @Override public final boolean isInitialized() { return true; } @Override public Builder mergeFrom( org.apache.ratis.thirdparty.com.google.protobuf.CodedInputStream input, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { Context parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (Context) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private java.util.List rules_ = java.util.Collections.emptyList(); private void ensureRulesIsMutable() { if (!((bitField0_ & 0x00000001) != 0)) { rules_ = new java.util.ArrayList(rules_); bitField0_ |= 0x00000001; } } private org.apache.ratis.thirdparty.com.google.protobuf.RepeatedFieldBuilderV3< org.apache.ratis.thirdparty.com.google.api.ContextRule, org.apache.ratis.thirdparty.com.google.api.ContextRule.Builder, org.apache.ratis.thirdparty.com.google.api.ContextRuleOrBuilder> rulesBuilder_; /** *
     * A list of RPC context rules that apply to individual API methods.
     * **NOTE:** All service configuration rules follow "last one wins" order.
     * 
* * repeated .google.api.ContextRule rules = 1; */ public java.util.List getRulesList() { if (rulesBuilder_ == null) { return java.util.Collections.unmodifiableList(rules_); } else { return rulesBuilder_.getMessageList(); } } /** *
     * A list of RPC context rules that apply to individual API methods.
     * **NOTE:** All service configuration rules follow "last one wins" order.
     * 
* * repeated .google.api.ContextRule rules = 1; */ public int getRulesCount() { if (rulesBuilder_ == null) { return rules_.size(); } else { return rulesBuilder_.getCount(); } } /** *
     * A list of RPC context rules that apply to individual API methods.
     * **NOTE:** All service configuration rules follow "last one wins" order.
     * 
* * repeated .google.api.ContextRule rules = 1; */ public org.apache.ratis.thirdparty.com.google.api.ContextRule getRules(int index) { if (rulesBuilder_ == null) { return rules_.get(index); } else { return rulesBuilder_.getMessage(index); } } /** *
     * A list of RPC context rules that apply to individual API methods.
     * **NOTE:** All service configuration rules follow "last one wins" order.
     * 
* * repeated .google.api.ContextRule rules = 1; */ public Builder setRules( int index, org.apache.ratis.thirdparty.com.google.api.ContextRule value) { if (rulesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureRulesIsMutable(); rules_.set(index, value); onChanged(); } else { rulesBuilder_.setMessage(index, value); } return this; } /** *
     * A list of RPC context rules that apply to individual API methods.
     * **NOTE:** All service configuration rules follow "last one wins" order.
     * 
* * repeated .google.api.ContextRule rules = 1; */ public Builder setRules( int index, org.apache.ratis.thirdparty.com.google.api.ContextRule.Builder builderForValue) { if (rulesBuilder_ == null) { ensureRulesIsMutable(); rules_.set(index, builderForValue.build()); onChanged(); } else { rulesBuilder_.setMessage(index, builderForValue.build()); } return this; } /** *
     * A list of RPC context rules that apply to individual API methods.
     * **NOTE:** All service configuration rules follow "last one wins" order.
     * 
* * repeated .google.api.ContextRule rules = 1; */ public Builder addRules(org.apache.ratis.thirdparty.com.google.api.ContextRule value) { if (rulesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureRulesIsMutable(); rules_.add(value); onChanged(); } else { rulesBuilder_.addMessage(value); } return this; } /** *
     * A list of RPC context rules that apply to individual API methods.
     * **NOTE:** All service configuration rules follow "last one wins" order.
     * 
* * repeated .google.api.ContextRule rules = 1; */ public Builder addRules( int index, org.apache.ratis.thirdparty.com.google.api.ContextRule value) { if (rulesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureRulesIsMutable(); rules_.add(index, value); onChanged(); } else { rulesBuilder_.addMessage(index, value); } return this; } /** *
     * A list of RPC context rules that apply to individual API methods.
     * **NOTE:** All service configuration rules follow "last one wins" order.
     * 
* * repeated .google.api.ContextRule rules = 1; */ public Builder addRules( org.apache.ratis.thirdparty.com.google.api.ContextRule.Builder builderForValue) { if (rulesBuilder_ == null) { ensureRulesIsMutable(); rules_.add(builderForValue.build()); onChanged(); } else { rulesBuilder_.addMessage(builderForValue.build()); } return this; } /** *
     * A list of RPC context rules that apply to individual API methods.
     * **NOTE:** All service configuration rules follow "last one wins" order.
     * 
* * repeated .google.api.ContextRule rules = 1; */ public Builder addRules( int index, org.apache.ratis.thirdparty.com.google.api.ContextRule.Builder builderForValue) { if (rulesBuilder_ == null) { ensureRulesIsMutable(); rules_.add(index, builderForValue.build()); onChanged(); } else { rulesBuilder_.addMessage(index, builderForValue.build()); } return this; } /** *
     * A list of RPC context rules that apply to individual API methods.
     * **NOTE:** All service configuration rules follow "last one wins" order.
     * 
* * repeated .google.api.ContextRule rules = 1; */ public Builder addAllRules( Iterable values) { if (rulesBuilder_ == null) { ensureRulesIsMutable(); org.apache.ratis.thirdparty.com.google.protobuf.AbstractMessageLite.Builder.addAll( values, rules_); onChanged(); } else { rulesBuilder_.addAllMessages(values); } return this; } /** *
     * A list of RPC context rules that apply to individual API methods.
     * **NOTE:** All service configuration rules follow "last one wins" order.
     * 
* * repeated .google.api.ContextRule rules = 1; */ public Builder clearRules() { if (rulesBuilder_ == null) { rules_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); } else { rulesBuilder_.clear(); } return this; } /** *
     * A list of RPC context rules that apply to individual API methods.
     * **NOTE:** All service configuration rules follow "last one wins" order.
     * 
* * repeated .google.api.ContextRule rules = 1; */ public Builder removeRules(int index) { if (rulesBuilder_ == null) { ensureRulesIsMutable(); rules_.remove(index); onChanged(); } else { rulesBuilder_.remove(index); } return this; } /** *
     * A list of RPC context rules that apply to individual API methods.
     * **NOTE:** All service configuration rules follow "last one wins" order.
     * 
* * repeated .google.api.ContextRule rules = 1; */ public org.apache.ratis.thirdparty.com.google.api.ContextRule.Builder getRulesBuilder( int index) { return getRulesFieldBuilder().getBuilder(index); } /** *
     * A list of RPC context rules that apply to individual API methods.
     * **NOTE:** All service configuration rules follow "last one wins" order.
     * 
* * repeated .google.api.ContextRule rules = 1; */ public org.apache.ratis.thirdparty.com.google.api.ContextRuleOrBuilder getRulesOrBuilder( int index) { if (rulesBuilder_ == null) { return rules_.get(index); } else { return rulesBuilder_.getMessageOrBuilder(index); } } /** *
     * A list of RPC context rules that apply to individual API methods.
     * **NOTE:** All service configuration rules follow "last one wins" order.
     * 
* * repeated .google.api.ContextRule rules = 1; */ public java.util.List getRulesOrBuilderList() { if (rulesBuilder_ != null) { return rulesBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(rules_); } } /** *
     * A list of RPC context rules that apply to individual API methods.
     * **NOTE:** All service configuration rules follow "last one wins" order.
     * 
* * repeated .google.api.ContextRule rules = 1; */ public org.apache.ratis.thirdparty.com.google.api.ContextRule.Builder addRulesBuilder() { return getRulesFieldBuilder().addBuilder( org.apache.ratis.thirdparty.com.google.api.ContextRule.getDefaultInstance()); } /** *
     * A list of RPC context rules that apply to individual API methods.
     * **NOTE:** All service configuration rules follow "last one wins" order.
     * 
* * repeated .google.api.ContextRule rules = 1; */ public org.apache.ratis.thirdparty.com.google.api.ContextRule.Builder addRulesBuilder( int index) { return getRulesFieldBuilder().addBuilder( index, org.apache.ratis.thirdparty.com.google.api.ContextRule.getDefaultInstance()); } /** *
     * A list of RPC context rules that apply to individual API methods.
     * **NOTE:** All service configuration rules follow "last one wins" order.
     * 
* * repeated .google.api.ContextRule rules = 1; */ public java.util.List getRulesBuilderList() { return getRulesFieldBuilder().getBuilderList(); } private org.apache.ratis.thirdparty.com.google.protobuf.RepeatedFieldBuilderV3< org.apache.ratis.thirdparty.com.google.api.ContextRule, org.apache.ratis.thirdparty.com.google.api.ContextRule.Builder, org.apache.ratis.thirdparty.com.google.api.ContextRuleOrBuilder> getRulesFieldBuilder() { if (rulesBuilder_ == null) { rulesBuilder_ = new org.apache.ratis.thirdparty.com.google.protobuf.RepeatedFieldBuilderV3< org.apache.ratis.thirdparty.com.google.api.ContextRule, org.apache.ratis.thirdparty.com.google.api.ContextRule.Builder, org.apache.ratis.thirdparty.com.google.api.ContextRuleOrBuilder>( rules_, ((bitField0_ & 0x00000001) != 0), getParentForChildren(), isClean()); rules_ = null; } return rulesBuilder_; } @Override public final Builder setUnknownFields( final org.apache.ratis.thirdparty.com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @Override public final Builder mergeUnknownFields( final org.apache.ratis.thirdparty.com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:google.api.Context) } // @@protoc_insertion_point(class_scope:google.api.Context) private static final Context DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new Context(); } public static Context getDefaultInstance() { return DEFAULT_INSTANCE; } private static final org.apache.ratis.thirdparty.com.google.protobuf.Parser PARSER = new org.apache.ratis.thirdparty.com.google.protobuf.AbstractParser() { @Override public Context parsePartialFrom( org.apache.ratis.thirdparty.com.google.protobuf.CodedInputStream input, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException { return new Context(input, extensionRegistry); } }; public static org.apache.ratis.thirdparty.com.google.protobuf.Parser parser() { return PARSER; } @Override public org.apache.ratis.thirdparty.com.google.protobuf.Parser getParserForType() { return PARSER; } @Override public Context getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy