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

io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse Maven / Gradle / Ivy

There is a newer version: 1.0.46
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: envoy/service/ratelimit/v2/rls.proto

package io.envoyproxy.envoy.service.ratelimit.v2;

/**
 * 
 * A response from a ShouldRateLimit call.
 * 
* * Protobuf type {@code envoy.service.ratelimit.v2.RateLimitResponse} */ public final class RateLimitResponse extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:envoy.service.ratelimit.v2.RateLimitResponse) RateLimitResponseOrBuilder { private static final long serialVersionUID = 0L; // Use RateLimitResponse.newBuilder() to construct. private RateLimitResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private RateLimitResponse() { overallCode_ = 0; statuses_ = java.util.Collections.emptyList(); headers_ = java.util.Collections.emptyList(); } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new RateLimitResponse(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private RateLimitResponse( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } int mutable_bitField0_ = 0; com.google.protobuf.UnknownFieldSet.Builder unknownFields = com.google.protobuf.UnknownFieldSet.newBuilder(); try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 8: { int rawValue = input.readEnum(); overallCode_ = rawValue; break; } case 18: { if (!((mutable_bitField0_ & 0x00000001) != 0)) { statuses_ = new java.util.ArrayList(); mutable_bitField0_ |= 0x00000001; } statuses_.add( input.readMessage(io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus.parser(), extensionRegistry)); break; } case 26: { if (!((mutable_bitField0_ & 0x00000002) != 0)) { headers_ = new java.util.ArrayList(); mutable_bitField0_ |= 0x00000002; } headers_.add( input.readMessage(io.envoyproxy.envoy.api.v2.core.HeaderValue.parser(), extensionRegistry)); break; } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { if (((mutable_bitField0_ & 0x00000001) != 0)) { statuses_ = java.util.Collections.unmodifiableList(statuses_); } if (((mutable_bitField0_ & 0x00000002) != 0)) { headers_ = java.util.Collections.unmodifiableList(headers_); } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.envoyproxy.envoy.service.ratelimit.v2.RlsProto.internal_static_envoy_service_ratelimit_v2_RateLimitResponse_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.envoyproxy.envoy.service.ratelimit.v2.RlsProto.internal_static_envoy_service_ratelimit_v2_RateLimitResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.class, io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Builder.class); } /** * Protobuf enum {@code envoy.service.ratelimit.v2.RateLimitResponse.Code} */ public enum Code implements com.google.protobuf.ProtocolMessageEnum { /** *
     * The response code is not known.
     * 
* * UNKNOWN = 0; */ UNKNOWN(0), /** *
     * The response code to notify that the number of requests are under limit.
     * 
* * OK = 1; */ OK(1), /** *
     * The response code to notify that the number of requests are over limit.
     * 
* * OVER_LIMIT = 2; */ OVER_LIMIT(2), UNRECOGNIZED(-1), ; /** *
     * The response code is not known.
     * 
* * UNKNOWN = 0; */ public static final int UNKNOWN_VALUE = 0; /** *
     * The response code to notify that the number of requests are under limit.
     * 
* * OK = 1; */ public static final int OK_VALUE = 1; /** *
     * The response code to notify that the number of requests are over limit.
     * 
* * OVER_LIMIT = 2; */ public static final int OVER_LIMIT_VALUE = 2; public final int getNumber() { if (this == UNRECOGNIZED) { throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; } /** * @deprecated Use {@link #forNumber(int)} instead. */ @java.lang.Deprecated public static Code valueOf(int value) { return forNumber(value); } public static Code forNumber(int value) { switch (value) { case 0: return UNKNOWN; case 1: return OK; case 2: return OVER_LIMIT; default: return null; } } public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() { return internalValueMap; } private static final com.google.protobuf.Internal.EnumLiteMap< Code> internalValueMap = new com.google.protobuf.Internal.EnumLiteMap() { public Code findValueByNumber(int number) { return Code.forNumber(number); } }; public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() { return getDescriptor().getValues().get(ordinal()); } public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() { return getDescriptor(); } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { return io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.getDescriptor().getEnumTypes().get(0); } private static final Code[] VALUES = values(); public static Code valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { return UNRECOGNIZED; } return VALUES[desc.getIndex()]; } private final int value; private Code(int value) { this.value = value; } // @@protoc_insertion_point(enum_scope:envoy.service.ratelimit.v2.RateLimitResponse.Code) } public interface RateLimitOrBuilder extends // @@protoc_insertion_point(interface_extends:envoy.service.ratelimit.v2.RateLimitResponse.RateLimit) com.google.protobuf.MessageOrBuilder { /** *
     * The number of requests per unit of time.
     * 
* * uint32 requests_per_unit = 1; */ int getRequestsPerUnit(); /** *
     * The unit of time.
     * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Unit unit = 2; */ int getUnitValue(); /** *
     * The unit of time.
     * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Unit unit = 2; */ io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Unit getUnit(); } /** *
   * Defines an actual rate limit in terms of requests per unit of time and the unit itself.
   * 
* * Protobuf type {@code envoy.service.ratelimit.v2.RateLimitResponse.RateLimit} */ public static final class RateLimit extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:envoy.service.ratelimit.v2.RateLimitResponse.RateLimit) RateLimitOrBuilder { private static final long serialVersionUID = 0L; // Use RateLimit.newBuilder() to construct. private RateLimit(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private RateLimit() { unit_ = 0; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new RateLimit(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private RateLimit( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } com.google.protobuf.UnknownFieldSet.Builder unknownFields = com.google.protobuf.UnknownFieldSet.newBuilder(); try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 8: { requestsPerUnit_ = input.readUInt32(); break; } case 16: { int rawValue = input.readEnum(); unit_ = rawValue; break; } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.envoyproxy.envoy.service.ratelimit.v2.RlsProto.internal_static_envoy_service_ratelimit_v2_RateLimitResponse_RateLimit_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.envoyproxy.envoy.service.ratelimit.v2.RlsProto.internal_static_envoy_service_ratelimit_v2_RateLimitResponse_RateLimit_fieldAccessorTable .ensureFieldAccessorsInitialized( io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.class, io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Builder.class); } /** * Protobuf enum {@code envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Unit} */ public enum Unit implements com.google.protobuf.ProtocolMessageEnum { /** *
       * The time unit is not known.
       * 
* * UNKNOWN = 0; */ UNKNOWN(0), /** *
       * The time unit representing a second.
       * 
* * SECOND = 1; */ SECOND(1), /** *
       * The time unit representing a minute.
       * 
* * MINUTE = 2; */ MINUTE(2), /** *
       * The time unit representing an hour.
       * 
* * HOUR = 3; */ HOUR(3), /** *
       * The time unit representing a day.
       * 
* * DAY = 4; */ DAY(4), UNRECOGNIZED(-1), ; /** *
       * The time unit is not known.
       * 
* * UNKNOWN = 0; */ public static final int UNKNOWN_VALUE = 0; /** *
       * The time unit representing a second.
       * 
* * SECOND = 1; */ public static final int SECOND_VALUE = 1; /** *
       * The time unit representing a minute.
       * 
* * MINUTE = 2; */ public static final int MINUTE_VALUE = 2; /** *
       * The time unit representing an hour.
       * 
* * HOUR = 3; */ public static final int HOUR_VALUE = 3; /** *
       * The time unit representing a day.
       * 
* * DAY = 4; */ public static final int DAY_VALUE = 4; public final int getNumber() { if (this == UNRECOGNIZED) { throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; } /** * @deprecated Use {@link #forNumber(int)} instead. */ @java.lang.Deprecated public static Unit valueOf(int value) { return forNumber(value); } public static Unit forNumber(int value) { switch (value) { case 0: return UNKNOWN; case 1: return SECOND; case 2: return MINUTE; case 3: return HOUR; case 4: return DAY; default: return null; } } public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() { return internalValueMap; } private static final com.google.protobuf.Internal.EnumLiteMap< Unit> internalValueMap = new com.google.protobuf.Internal.EnumLiteMap() { public Unit findValueByNumber(int number) { return Unit.forNumber(number); } }; public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() { return getDescriptor().getValues().get(ordinal()); } public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() { return getDescriptor(); } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { return io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.getDescriptor().getEnumTypes().get(0); } private static final Unit[] VALUES = values(); public static Unit valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { return UNRECOGNIZED; } return VALUES[desc.getIndex()]; } private final int value; private Unit(int value) { this.value = value; } // @@protoc_insertion_point(enum_scope:envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Unit) } public static final int REQUESTS_PER_UNIT_FIELD_NUMBER = 1; private int requestsPerUnit_; /** *
     * The number of requests per unit of time.
     * 
* * uint32 requests_per_unit = 1; */ public int getRequestsPerUnit() { return requestsPerUnit_; } public static final int UNIT_FIELD_NUMBER = 2; private int unit_; /** *
     * The unit of time.
     * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Unit unit = 2; */ public int getUnitValue() { return unit_; } /** *
     * The unit of time.
     * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Unit unit = 2; */ public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Unit getUnit() { @SuppressWarnings("deprecation") io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Unit result = io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Unit.valueOf(unit_); return result == null ? io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Unit.UNRECOGNIZED : result; } private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (requestsPerUnit_ != 0) { output.writeUInt32(1, requestsPerUnit_); } if (unit_ != io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Unit.UNKNOWN.getNumber()) { output.writeEnum(2, unit_); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (requestsPerUnit_ != 0) { size += com.google.protobuf.CodedOutputStream .computeUInt32Size(1, requestsPerUnit_); } if (unit_ != io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Unit.UNKNOWN.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(2, unit_); } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit)) { return super.equals(obj); } io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit other = (io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit) obj; if (getRequestsPerUnit() != other.getRequestsPerUnit()) return false; if (unit_ != other.unit_) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + REQUESTS_PER_UNIT_FIELD_NUMBER; hash = (53 * hash) + getRequestsPerUnit(); hash = (37 * hash) + UNIT_FIELD_NUMBER; hash = (53 * hash) + unit_; hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @java.lang.Override public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override protected Builder newBuilderForType( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** *
     * Defines an actual rate limit in terms of requests per unit of time and the unit itself.
     * 
* * Protobuf type {@code envoy.service.ratelimit.v2.RateLimitResponse.RateLimit} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:envoy.service.ratelimit.v2.RateLimitResponse.RateLimit) io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimitOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.envoyproxy.envoy.service.ratelimit.v2.RlsProto.internal_static_envoy_service_ratelimit_v2_RateLimitResponse_RateLimit_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.envoyproxy.envoy.service.ratelimit.v2.RlsProto.internal_static_envoy_service_ratelimit_v2_RateLimitResponse_RateLimit_fieldAccessorTable .ensureFieldAccessorsInitialized( io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.class, io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Builder.class); } // Construct using io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { } } @java.lang.Override public Builder clear() { super.clear(); requestsPerUnit_ = 0; unit_ = 0; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return io.envoyproxy.envoy.service.ratelimit.v2.RlsProto.internal_static_envoy_service_ratelimit_v2_RateLimitResponse_RateLimit_descriptor; } @java.lang.Override public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit getDefaultInstanceForType() { return io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.getDefaultInstance(); } @java.lang.Override public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit build() { io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit buildPartial() { io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit result = new io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit(this); result.requestsPerUnit_ = requestsPerUnit_; result.unit_ = unit_; onBuilt(); return result; } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit) { return mergeFrom((io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit other) { if (other == io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.getDefaultInstance()) return this; if (other.getRequestsPerUnit() != 0) { setRequestsPerUnit(other.getRequestsPerUnit()); } if (other.unit_ != 0) { setUnitValue(other.getUnitValue()); } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int requestsPerUnit_ ; /** *
       * The number of requests per unit of time.
       * 
* * uint32 requests_per_unit = 1; */ public int getRequestsPerUnit() { return requestsPerUnit_; } /** *
       * The number of requests per unit of time.
       * 
* * uint32 requests_per_unit = 1; */ public Builder setRequestsPerUnit(int value) { requestsPerUnit_ = value; onChanged(); return this; } /** *
       * The number of requests per unit of time.
       * 
* * uint32 requests_per_unit = 1; */ public Builder clearRequestsPerUnit() { requestsPerUnit_ = 0; onChanged(); return this; } private int unit_ = 0; /** *
       * The unit of time.
       * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Unit unit = 2; */ public int getUnitValue() { return unit_; } /** *
       * The unit of time.
       * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Unit unit = 2; */ public Builder setUnitValue(int value) { unit_ = value; onChanged(); return this; } /** *
       * The unit of time.
       * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Unit unit = 2; */ public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Unit getUnit() { @SuppressWarnings("deprecation") io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Unit result = io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Unit.valueOf(unit_); return result == null ? io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Unit.UNRECOGNIZED : result; } /** *
       * The unit of time.
       * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Unit unit = 2; */ public Builder setUnit(io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Unit value) { if (value == null) { throw new NullPointerException(); } unit_ = value.getNumber(); onChanged(); return this; } /** *
       * The unit of time.
       * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Unit unit = 2; */ public Builder clearUnit() { unit_ = 0; onChanged(); return this; } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @java.lang.Override public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:envoy.service.ratelimit.v2.RateLimitResponse.RateLimit) } // @@protoc_insertion_point(class_scope:envoy.service.ratelimit.v2.RateLimitResponse.RateLimit) private static final io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit(); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public RateLimit parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new RateLimit(input, extensionRegistry); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit getDefaultInstanceForType() { return DEFAULT_INSTANCE; } } public interface DescriptorStatusOrBuilder extends // @@protoc_insertion_point(interface_extends:envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus) com.google.protobuf.MessageOrBuilder { /** *
     * The response code for an individual descriptor.
     * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.Code code = 1; */ int getCodeValue(); /** *
     * The response code for an individual descriptor.
     * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.Code code = 1; */ io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Code getCode(); /** *
     * The current limit as configured by the server. Useful for debugging, etc.
     * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.RateLimit current_limit = 2; */ boolean hasCurrentLimit(); /** *
     * The current limit as configured by the server. Useful for debugging, etc.
     * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.RateLimit current_limit = 2; */ io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit getCurrentLimit(); /** *
     * The current limit as configured by the server. Useful for debugging, etc.
     * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.RateLimit current_limit = 2; */ io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimitOrBuilder getCurrentLimitOrBuilder(); /** *
     * The limit remaining in the current time unit.
     * 
* * uint32 limit_remaining = 3; */ int getLimitRemaining(); } /** * Protobuf type {@code envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus} */ public static final class DescriptorStatus extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus) DescriptorStatusOrBuilder { private static final long serialVersionUID = 0L; // Use DescriptorStatus.newBuilder() to construct. private DescriptorStatus(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private DescriptorStatus() { code_ = 0; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new DescriptorStatus(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private DescriptorStatus( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } com.google.protobuf.UnknownFieldSet.Builder unknownFields = com.google.protobuf.UnknownFieldSet.newBuilder(); try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 8: { int rawValue = input.readEnum(); code_ = rawValue; break; } case 18: { io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Builder subBuilder = null; if (currentLimit_ != null) { subBuilder = currentLimit_.toBuilder(); } currentLimit_ = input.readMessage(io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(currentLimit_); currentLimit_ = subBuilder.buildPartial(); } break; } case 24: { limitRemaining_ = input.readUInt32(); break; } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.envoyproxy.envoy.service.ratelimit.v2.RlsProto.internal_static_envoy_service_ratelimit_v2_RateLimitResponse_DescriptorStatus_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.envoyproxy.envoy.service.ratelimit.v2.RlsProto.internal_static_envoy_service_ratelimit_v2_RateLimitResponse_DescriptorStatus_fieldAccessorTable .ensureFieldAccessorsInitialized( io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus.class, io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus.Builder.class); } public static final int CODE_FIELD_NUMBER = 1; private int code_; /** *
     * The response code for an individual descriptor.
     * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.Code code = 1; */ public int getCodeValue() { return code_; } /** *
     * The response code for an individual descriptor.
     * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.Code code = 1; */ public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Code getCode() { @SuppressWarnings("deprecation") io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Code result = io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Code.valueOf(code_); return result == null ? io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Code.UNRECOGNIZED : result; } public static final int CURRENT_LIMIT_FIELD_NUMBER = 2; private io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit currentLimit_; /** *
     * The current limit as configured by the server. Useful for debugging, etc.
     * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.RateLimit current_limit = 2; */ public boolean hasCurrentLimit() { return currentLimit_ != null; } /** *
     * The current limit as configured by the server. Useful for debugging, etc.
     * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.RateLimit current_limit = 2; */ public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit getCurrentLimit() { return currentLimit_ == null ? io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.getDefaultInstance() : currentLimit_; } /** *
     * The current limit as configured by the server. Useful for debugging, etc.
     * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.RateLimit current_limit = 2; */ public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimitOrBuilder getCurrentLimitOrBuilder() { return getCurrentLimit(); } public static final int LIMIT_REMAINING_FIELD_NUMBER = 3; private int limitRemaining_; /** *
     * The limit remaining in the current time unit.
     * 
* * uint32 limit_remaining = 3; */ public int getLimitRemaining() { return limitRemaining_; } private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (code_ != io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Code.UNKNOWN.getNumber()) { output.writeEnum(1, code_); } if (currentLimit_ != null) { output.writeMessage(2, getCurrentLimit()); } if (limitRemaining_ != 0) { output.writeUInt32(3, limitRemaining_); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (code_ != io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Code.UNKNOWN.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(1, code_); } if (currentLimit_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(2, getCurrentLimit()); } if (limitRemaining_ != 0) { size += com.google.protobuf.CodedOutputStream .computeUInt32Size(3, limitRemaining_); } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus)) { return super.equals(obj); } io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus other = (io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus) obj; if (code_ != other.code_) return false; if (hasCurrentLimit() != other.hasCurrentLimit()) return false; if (hasCurrentLimit()) { if (!getCurrentLimit() .equals(other.getCurrentLimit())) return false; } if (getLimitRemaining() != other.getLimitRemaining()) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + CODE_FIELD_NUMBER; hash = (53 * hash) + code_; if (hasCurrentLimit()) { hash = (37 * hash) + CURRENT_LIMIT_FIELD_NUMBER; hash = (53 * hash) + getCurrentLimit().hashCode(); } hash = (37 * hash) + LIMIT_REMAINING_FIELD_NUMBER; hash = (53 * hash) + getLimitRemaining(); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @java.lang.Override public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override protected Builder newBuilderForType( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** * Protobuf type {@code envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus) io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatusOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.envoyproxy.envoy.service.ratelimit.v2.RlsProto.internal_static_envoy_service_ratelimit_v2_RateLimitResponse_DescriptorStatus_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.envoyproxy.envoy.service.ratelimit.v2.RlsProto.internal_static_envoy_service_ratelimit_v2_RateLimitResponse_DescriptorStatus_fieldAccessorTable .ensureFieldAccessorsInitialized( io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus.class, io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus.Builder.class); } // Construct using io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { } } @java.lang.Override public Builder clear() { super.clear(); code_ = 0; if (currentLimitBuilder_ == null) { currentLimit_ = null; } else { currentLimit_ = null; currentLimitBuilder_ = null; } limitRemaining_ = 0; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return io.envoyproxy.envoy.service.ratelimit.v2.RlsProto.internal_static_envoy_service_ratelimit_v2_RateLimitResponse_DescriptorStatus_descriptor; } @java.lang.Override public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus getDefaultInstanceForType() { return io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus.getDefaultInstance(); } @java.lang.Override public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus build() { io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus buildPartial() { io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus result = new io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus(this); result.code_ = code_; if (currentLimitBuilder_ == null) { result.currentLimit_ = currentLimit_; } else { result.currentLimit_ = currentLimitBuilder_.build(); } result.limitRemaining_ = limitRemaining_; onBuilt(); return result; } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus) { return mergeFrom((io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus other) { if (other == io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus.getDefaultInstance()) return this; if (other.code_ != 0) { setCodeValue(other.getCodeValue()); } if (other.hasCurrentLimit()) { mergeCurrentLimit(other.getCurrentLimit()); } if (other.getLimitRemaining() != 0) { setLimitRemaining(other.getLimitRemaining()); } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int code_ = 0; /** *
       * The response code for an individual descriptor.
       * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.Code code = 1; */ public int getCodeValue() { return code_; } /** *
       * The response code for an individual descriptor.
       * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.Code code = 1; */ public Builder setCodeValue(int value) { code_ = value; onChanged(); return this; } /** *
       * The response code for an individual descriptor.
       * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.Code code = 1; */ public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Code getCode() { @SuppressWarnings("deprecation") io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Code result = io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Code.valueOf(code_); return result == null ? io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Code.UNRECOGNIZED : result; } /** *
       * The response code for an individual descriptor.
       * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.Code code = 1; */ public Builder setCode(io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Code value) { if (value == null) { throw new NullPointerException(); } code_ = value.getNumber(); onChanged(); return this; } /** *
       * The response code for an individual descriptor.
       * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.Code code = 1; */ public Builder clearCode() { code_ = 0; onChanged(); return this; } private io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit currentLimit_; private com.google.protobuf.SingleFieldBuilderV3< io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit, io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Builder, io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimitOrBuilder> currentLimitBuilder_; /** *
       * The current limit as configured by the server. Useful for debugging, etc.
       * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.RateLimit current_limit = 2; */ public boolean hasCurrentLimit() { return currentLimitBuilder_ != null || currentLimit_ != null; } /** *
       * The current limit as configured by the server. Useful for debugging, etc.
       * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.RateLimit current_limit = 2; */ public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit getCurrentLimit() { if (currentLimitBuilder_ == null) { return currentLimit_ == null ? io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.getDefaultInstance() : currentLimit_; } else { return currentLimitBuilder_.getMessage(); } } /** *
       * The current limit as configured by the server. Useful for debugging, etc.
       * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.RateLimit current_limit = 2; */ public Builder setCurrentLimit(io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit value) { if (currentLimitBuilder_ == null) { if (value == null) { throw new NullPointerException(); } currentLimit_ = value; onChanged(); } else { currentLimitBuilder_.setMessage(value); } return this; } /** *
       * The current limit as configured by the server. Useful for debugging, etc.
       * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.RateLimit current_limit = 2; */ public Builder setCurrentLimit( io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Builder builderForValue) { if (currentLimitBuilder_ == null) { currentLimit_ = builderForValue.build(); onChanged(); } else { currentLimitBuilder_.setMessage(builderForValue.build()); } return this; } /** *
       * The current limit as configured by the server. Useful for debugging, etc.
       * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.RateLimit current_limit = 2; */ public Builder mergeCurrentLimit(io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit value) { if (currentLimitBuilder_ == null) { if (currentLimit_ != null) { currentLimit_ = io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.newBuilder(currentLimit_).mergeFrom(value).buildPartial(); } else { currentLimit_ = value; } onChanged(); } else { currentLimitBuilder_.mergeFrom(value); } return this; } /** *
       * The current limit as configured by the server. Useful for debugging, etc.
       * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.RateLimit current_limit = 2; */ public Builder clearCurrentLimit() { if (currentLimitBuilder_ == null) { currentLimit_ = null; onChanged(); } else { currentLimit_ = null; currentLimitBuilder_ = null; } return this; } /** *
       * The current limit as configured by the server. Useful for debugging, etc.
       * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.RateLimit current_limit = 2; */ public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Builder getCurrentLimitBuilder() { onChanged(); return getCurrentLimitFieldBuilder().getBuilder(); } /** *
       * The current limit as configured by the server. Useful for debugging, etc.
       * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.RateLimit current_limit = 2; */ public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimitOrBuilder getCurrentLimitOrBuilder() { if (currentLimitBuilder_ != null) { return currentLimitBuilder_.getMessageOrBuilder(); } else { return currentLimit_ == null ? io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.getDefaultInstance() : currentLimit_; } } /** *
       * The current limit as configured by the server. Useful for debugging, etc.
       * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.RateLimit current_limit = 2; */ private com.google.protobuf.SingleFieldBuilderV3< io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit, io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Builder, io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimitOrBuilder> getCurrentLimitFieldBuilder() { if (currentLimitBuilder_ == null) { currentLimitBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit, io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimit.Builder, io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.RateLimitOrBuilder>( getCurrentLimit(), getParentForChildren(), isClean()); currentLimit_ = null; } return currentLimitBuilder_; } private int limitRemaining_ ; /** *
       * The limit remaining in the current time unit.
       * 
* * uint32 limit_remaining = 3; */ public int getLimitRemaining() { return limitRemaining_; } /** *
       * The limit remaining in the current time unit.
       * 
* * uint32 limit_remaining = 3; */ public Builder setLimitRemaining(int value) { limitRemaining_ = value; onChanged(); return this; } /** *
       * The limit remaining in the current time unit.
       * 
* * uint32 limit_remaining = 3; */ public Builder clearLimitRemaining() { limitRemaining_ = 0; onChanged(); return this; } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @java.lang.Override public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus) } // @@protoc_insertion_point(class_scope:envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus) private static final io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus(); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public DescriptorStatus parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new DescriptorStatus(input, extensionRegistry); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus getDefaultInstanceForType() { return DEFAULT_INSTANCE; } } public static final int OVERALL_CODE_FIELD_NUMBER = 1; private int overallCode_; /** *
   * The overall response code which takes into account all of the descriptors that were passed
   * in the RateLimitRequest message.
   * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.Code overall_code = 1; */ public int getOverallCodeValue() { return overallCode_; } /** *
   * The overall response code which takes into account all of the descriptors that were passed
   * in the RateLimitRequest message.
   * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.Code overall_code = 1; */ public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Code getOverallCode() { @SuppressWarnings("deprecation") io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Code result = io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Code.valueOf(overallCode_); return result == null ? io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Code.UNRECOGNIZED : result; } public static final int STATUSES_FIELD_NUMBER = 2; private java.util.List statuses_; /** *
   * A list of DescriptorStatus messages which matches the length of the descriptor list passed
   * in the RateLimitRequest. This can be used by the caller to determine which individual
   * descriptors failed and/or what the currently configured limits are for all of them.
   * 
* * repeated .envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus statuses = 2; */ public java.util.List getStatusesList() { return statuses_; } /** *
   * A list of DescriptorStatus messages which matches the length of the descriptor list passed
   * in the RateLimitRequest. This can be used by the caller to determine which individual
   * descriptors failed and/or what the currently configured limits are for all of them.
   * 
* * repeated .envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus statuses = 2; */ public java.util.List getStatusesOrBuilderList() { return statuses_; } /** *
   * A list of DescriptorStatus messages which matches the length of the descriptor list passed
   * in the RateLimitRequest. This can be used by the caller to determine which individual
   * descriptors failed and/or what the currently configured limits are for all of them.
   * 
* * repeated .envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus statuses = 2; */ public int getStatusesCount() { return statuses_.size(); } /** *
   * A list of DescriptorStatus messages which matches the length of the descriptor list passed
   * in the RateLimitRequest. This can be used by the caller to determine which individual
   * descriptors failed and/or what the currently configured limits are for all of them.
   * 
* * repeated .envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus statuses = 2; */ public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus getStatuses(int index) { return statuses_.get(index); } /** *
   * A list of DescriptorStatus messages which matches the length of the descriptor list passed
   * in the RateLimitRequest. This can be used by the caller to determine which individual
   * descriptors failed and/or what the currently configured limits are for all of them.
   * 
* * repeated .envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus statuses = 2; */ public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatusOrBuilder getStatusesOrBuilder( int index) { return statuses_.get(index); } public static final int HEADERS_FIELD_NUMBER = 3; private java.util.List headers_; /** *
   * A list of headers to add to the response
   * 
* * repeated .envoy.api.v2.core.HeaderValue headers = 3; */ public java.util.List getHeadersList() { return headers_; } /** *
   * A list of headers to add to the response
   * 
* * repeated .envoy.api.v2.core.HeaderValue headers = 3; */ public java.util.List getHeadersOrBuilderList() { return headers_; } /** *
   * A list of headers to add to the response
   * 
* * repeated .envoy.api.v2.core.HeaderValue headers = 3; */ public int getHeadersCount() { return headers_.size(); } /** *
   * A list of headers to add to the response
   * 
* * repeated .envoy.api.v2.core.HeaderValue headers = 3; */ public io.envoyproxy.envoy.api.v2.core.HeaderValue getHeaders(int index) { return headers_.get(index); } /** *
   * A list of headers to add to the response
   * 
* * repeated .envoy.api.v2.core.HeaderValue headers = 3; */ public io.envoyproxy.envoy.api.v2.core.HeaderValueOrBuilder getHeadersOrBuilder( int index) { return headers_.get(index); } private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (overallCode_ != io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Code.UNKNOWN.getNumber()) { output.writeEnum(1, overallCode_); } for (int i = 0; i < statuses_.size(); i++) { output.writeMessage(2, statuses_.get(i)); } for (int i = 0; i < headers_.size(); i++) { output.writeMessage(3, headers_.get(i)); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (overallCode_ != io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Code.UNKNOWN.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(1, overallCode_); } for (int i = 0; i < statuses_.size(); i++) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(2, statuses_.get(i)); } for (int i = 0; i < headers_.size(); i++) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(3, headers_.get(i)); } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse)) { return super.equals(obj); } io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse other = (io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse) obj; if (overallCode_ != other.overallCode_) return false; if (!getStatusesList() .equals(other.getStatusesList())) return false; if (!getHeadersList() .equals(other.getHeadersList())) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + OVERALL_CODE_FIELD_NUMBER; hash = (53 * hash) + overallCode_; if (getStatusesCount() > 0) { hash = (37 * hash) + STATUSES_FIELD_NUMBER; hash = (53 * hash) + getStatusesList().hashCode(); } if (getHeadersCount() > 0) { hash = (37 * hash) + HEADERS_FIELD_NUMBER; hash = (53 * hash) + getHeadersList().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @java.lang.Override public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override protected Builder newBuilderForType( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** *
   * A response from a ShouldRateLimit call.
   * 
* * Protobuf type {@code envoy.service.ratelimit.v2.RateLimitResponse} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:envoy.service.ratelimit.v2.RateLimitResponse) io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponseOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.envoyproxy.envoy.service.ratelimit.v2.RlsProto.internal_static_envoy_service_ratelimit_v2_RateLimitResponse_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.envoyproxy.envoy.service.ratelimit.v2.RlsProto.internal_static_envoy_service_ratelimit_v2_RateLimitResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.class, io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Builder.class); } // Construct using io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getStatusesFieldBuilder(); getHeadersFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); overallCode_ = 0; if (statusesBuilder_ == null) { statuses_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000001); } else { statusesBuilder_.clear(); } if (headersBuilder_ == null) { headers_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000002); } else { headersBuilder_.clear(); } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return io.envoyproxy.envoy.service.ratelimit.v2.RlsProto.internal_static_envoy_service_ratelimit_v2_RateLimitResponse_descriptor; } @java.lang.Override public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse getDefaultInstanceForType() { return io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.getDefaultInstance(); } @java.lang.Override public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse build() { io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse buildPartial() { io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse result = new io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse(this); int from_bitField0_ = bitField0_; result.overallCode_ = overallCode_; if (statusesBuilder_ == null) { if (((bitField0_ & 0x00000001) != 0)) { statuses_ = java.util.Collections.unmodifiableList(statuses_); bitField0_ = (bitField0_ & ~0x00000001); } result.statuses_ = statuses_; } else { result.statuses_ = statusesBuilder_.build(); } if (headersBuilder_ == null) { if (((bitField0_ & 0x00000002) != 0)) { headers_ = java.util.Collections.unmodifiableList(headers_); bitField0_ = (bitField0_ & ~0x00000002); } result.headers_ = headers_; } else { result.headers_ = headersBuilder_.build(); } onBuilt(); return result; } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse) { return mergeFrom((io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse other) { if (other == io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.getDefaultInstance()) return this; if (other.overallCode_ != 0) { setOverallCodeValue(other.getOverallCodeValue()); } if (statusesBuilder_ == null) { if (!other.statuses_.isEmpty()) { if (statuses_.isEmpty()) { statuses_ = other.statuses_; bitField0_ = (bitField0_ & ~0x00000001); } else { ensureStatusesIsMutable(); statuses_.addAll(other.statuses_); } onChanged(); } } else { if (!other.statuses_.isEmpty()) { if (statusesBuilder_.isEmpty()) { statusesBuilder_.dispose(); statusesBuilder_ = null; statuses_ = other.statuses_; bitField0_ = (bitField0_ & ~0x00000001); statusesBuilder_ = com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? getStatusesFieldBuilder() : null; } else { statusesBuilder_.addAllMessages(other.statuses_); } } } if (headersBuilder_ == null) { if (!other.headers_.isEmpty()) { if (headers_.isEmpty()) { headers_ = other.headers_; bitField0_ = (bitField0_ & ~0x00000002); } else { ensureHeadersIsMutable(); headers_.addAll(other.headers_); } onChanged(); } } else { if (!other.headers_.isEmpty()) { if (headersBuilder_.isEmpty()) { headersBuilder_.dispose(); headersBuilder_ = null; headers_ = other.headers_; bitField0_ = (bitField0_ & ~0x00000002); headersBuilder_ = com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? getHeadersFieldBuilder() : null; } else { headersBuilder_.addAllMessages(other.headers_); } } } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private int overallCode_ = 0; /** *
     * The overall response code which takes into account all of the descriptors that were passed
     * in the RateLimitRequest message.
     * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.Code overall_code = 1; */ public int getOverallCodeValue() { return overallCode_; } /** *
     * The overall response code which takes into account all of the descriptors that were passed
     * in the RateLimitRequest message.
     * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.Code overall_code = 1; */ public Builder setOverallCodeValue(int value) { overallCode_ = value; onChanged(); return this; } /** *
     * The overall response code which takes into account all of the descriptors that were passed
     * in the RateLimitRequest message.
     * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.Code overall_code = 1; */ public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Code getOverallCode() { @SuppressWarnings("deprecation") io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Code result = io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Code.valueOf(overallCode_); return result == null ? io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Code.UNRECOGNIZED : result; } /** *
     * The overall response code which takes into account all of the descriptors that were passed
     * in the RateLimitRequest message.
     * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.Code overall_code = 1; */ public Builder setOverallCode(io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.Code value) { if (value == null) { throw new NullPointerException(); } overallCode_ = value.getNumber(); onChanged(); return this; } /** *
     * The overall response code which takes into account all of the descriptors that were passed
     * in the RateLimitRequest message.
     * 
* * .envoy.service.ratelimit.v2.RateLimitResponse.Code overall_code = 1; */ public Builder clearOverallCode() { overallCode_ = 0; onChanged(); return this; } private java.util.List statuses_ = java.util.Collections.emptyList(); private void ensureStatusesIsMutable() { if (!((bitField0_ & 0x00000001) != 0)) { statuses_ = new java.util.ArrayList(statuses_); bitField0_ |= 0x00000001; } } private com.google.protobuf.RepeatedFieldBuilderV3< io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus, io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus.Builder, io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatusOrBuilder> statusesBuilder_; /** *
     * A list of DescriptorStatus messages which matches the length of the descriptor list passed
     * in the RateLimitRequest. This can be used by the caller to determine which individual
     * descriptors failed and/or what the currently configured limits are for all of them.
     * 
* * repeated .envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus statuses = 2; */ public java.util.List getStatusesList() { if (statusesBuilder_ == null) { return java.util.Collections.unmodifiableList(statuses_); } else { return statusesBuilder_.getMessageList(); } } /** *
     * A list of DescriptorStatus messages which matches the length of the descriptor list passed
     * in the RateLimitRequest. This can be used by the caller to determine which individual
     * descriptors failed and/or what the currently configured limits are for all of them.
     * 
* * repeated .envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus statuses = 2; */ public int getStatusesCount() { if (statusesBuilder_ == null) { return statuses_.size(); } else { return statusesBuilder_.getCount(); } } /** *
     * A list of DescriptorStatus messages which matches the length of the descriptor list passed
     * in the RateLimitRequest. This can be used by the caller to determine which individual
     * descriptors failed and/or what the currently configured limits are for all of them.
     * 
* * repeated .envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus statuses = 2; */ public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus getStatuses(int index) { if (statusesBuilder_ == null) { return statuses_.get(index); } else { return statusesBuilder_.getMessage(index); } } /** *
     * A list of DescriptorStatus messages which matches the length of the descriptor list passed
     * in the RateLimitRequest. This can be used by the caller to determine which individual
     * descriptors failed and/or what the currently configured limits are for all of them.
     * 
* * repeated .envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus statuses = 2; */ public Builder setStatuses( int index, io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus value) { if (statusesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureStatusesIsMutable(); statuses_.set(index, value); onChanged(); } else { statusesBuilder_.setMessage(index, value); } return this; } /** *
     * A list of DescriptorStatus messages which matches the length of the descriptor list passed
     * in the RateLimitRequest. This can be used by the caller to determine which individual
     * descriptors failed and/or what the currently configured limits are for all of them.
     * 
* * repeated .envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus statuses = 2; */ public Builder setStatuses( int index, io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus.Builder builderForValue) { if (statusesBuilder_ == null) { ensureStatusesIsMutable(); statuses_.set(index, builderForValue.build()); onChanged(); } else { statusesBuilder_.setMessage(index, builderForValue.build()); } return this; } /** *
     * A list of DescriptorStatus messages which matches the length of the descriptor list passed
     * in the RateLimitRequest. This can be used by the caller to determine which individual
     * descriptors failed and/or what the currently configured limits are for all of them.
     * 
* * repeated .envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus statuses = 2; */ public Builder addStatuses(io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus value) { if (statusesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureStatusesIsMutable(); statuses_.add(value); onChanged(); } else { statusesBuilder_.addMessage(value); } return this; } /** *
     * A list of DescriptorStatus messages which matches the length of the descriptor list passed
     * in the RateLimitRequest. This can be used by the caller to determine which individual
     * descriptors failed and/or what the currently configured limits are for all of them.
     * 
* * repeated .envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus statuses = 2; */ public Builder addStatuses( int index, io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus value) { if (statusesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureStatusesIsMutable(); statuses_.add(index, value); onChanged(); } else { statusesBuilder_.addMessage(index, value); } return this; } /** *
     * A list of DescriptorStatus messages which matches the length of the descriptor list passed
     * in the RateLimitRequest. This can be used by the caller to determine which individual
     * descriptors failed and/or what the currently configured limits are for all of them.
     * 
* * repeated .envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus statuses = 2; */ public Builder addStatuses( io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus.Builder builderForValue) { if (statusesBuilder_ == null) { ensureStatusesIsMutable(); statuses_.add(builderForValue.build()); onChanged(); } else { statusesBuilder_.addMessage(builderForValue.build()); } return this; } /** *
     * A list of DescriptorStatus messages which matches the length of the descriptor list passed
     * in the RateLimitRequest. This can be used by the caller to determine which individual
     * descriptors failed and/or what the currently configured limits are for all of them.
     * 
* * repeated .envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus statuses = 2; */ public Builder addStatuses( int index, io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus.Builder builderForValue) { if (statusesBuilder_ == null) { ensureStatusesIsMutable(); statuses_.add(index, builderForValue.build()); onChanged(); } else { statusesBuilder_.addMessage(index, builderForValue.build()); } return this; } /** *
     * A list of DescriptorStatus messages which matches the length of the descriptor list passed
     * in the RateLimitRequest. This can be used by the caller to determine which individual
     * descriptors failed and/or what the currently configured limits are for all of them.
     * 
* * repeated .envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus statuses = 2; */ public Builder addAllStatuses( java.lang.Iterable values) { if (statusesBuilder_ == null) { ensureStatusesIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, statuses_); onChanged(); } else { statusesBuilder_.addAllMessages(values); } return this; } /** *
     * A list of DescriptorStatus messages which matches the length of the descriptor list passed
     * in the RateLimitRequest. This can be used by the caller to determine which individual
     * descriptors failed and/or what the currently configured limits are for all of them.
     * 
* * repeated .envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus statuses = 2; */ public Builder clearStatuses() { if (statusesBuilder_ == null) { statuses_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); } else { statusesBuilder_.clear(); } return this; } /** *
     * A list of DescriptorStatus messages which matches the length of the descriptor list passed
     * in the RateLimitRequest. This can be used by the caller to determine which individual
     * descriptors failed and/or what the currently configured limits are for all of them.
     * 
* * repeated .envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus statuses = 2; */ public Builder removeStatuses(int index) { if (statusesBuilder_ == null) { ensureStatusesIsMutable(); statuses_.remove(index); onChanged(); } else { statusesBuilder_.remove(index); } return this; } /** *
     * A list of DescriptorStatus messages which matches the length of the descriptor list passed
     * in the RateLimitRequest. This can be used by the caller to determine which individual
     * descriptors failed and/or what the currently configured limits are for all of them.
     * 
* * repeated .envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus statuses = 2; */ public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus.Builder getStatusesBuilder( int index) { return getStatusesFieldBuilder().getBuilder(index); } /** *
     * A list of DescriptorStatus messages which matches the length of the descriptor list passed
     * in the RateLimitRequest. This can be used by the caller to determine which individual
     * descriptors failed and/or what the currently configured limits are for all of them.
     * 
* * repeated .envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus statuses = 2; */ public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatusOrBuilder getStatusesOrBuilder( int index) { if (statusesBuilder_ == null) { return statuses_.get(index); } else { return statusesBuilder_.getMessageOrBuilder(index); } } /** *
     * A list of DescriptorStatus messages which matches the length of the descriptor list passed
     * in the RateLimitRequest. This can be used by the caller to determine which individual
     * descriptors failed and/or what the currently configured limits are for all of them.
     * 
* * repeated .envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus statuses = 2; */ public java.util.List getStatusesOrBuilderList() { if (statusesBuilder_ != null) { return statusesBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(statuses_); } } /** *
     * A list of DescriptorStatus messages which matches the length of the descriptor list passed
     * in the RateLimitRequest. This can be used by the caller to determine which individual
     * descriptors failed and/or what the currently configured limits are for all of them.
     * 
* * repeated .envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus statuses = 2; */ public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus.Builder addStatusesBuilder() { return getStatusesFieldBuilder().addBuilder( io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus.getDefaultInstance()); } /** *
     * A list of DescriptorStatus messages which matches the length of the descriptor list passed
     * in the RateLimitRequest. This can be used by the caller to determine which individual
     * descriptors failed and/or what the currently configured limits are for all of them.
     * 
* * repeated .envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus statuses = 2; */ public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus.Builder addStatusesBuilder( int index) { return getStatusesFieldBuilder().addBuilder( index, io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus.getDefaultInstance()); } /** *
     * A list of DescriptorStatus messages which matches the length of the descriptor list passed
     * in the RateLimitRequest. This can be used by the caller to determine which individual
     * descriptors failed and/or what the currently configured limits are for all of them.
     * 
* * repeated .envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus statuses = 2; */ public java.util.List getStatusesBuilderList() { return getStatusesFieldBuilder().getBuilderList(); } private com.google.protobuf.RepeatedFieldBuilderV3< io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus, io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus.Builder, io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatusOrBuilder> getStatusesFieldBuilder() { if (statusesBuilder_ == null) { statusesBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus, io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus.Builder, io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatusOrBuilder>( statuses_, ((bitField0_ & 0x00000001) != 0), getParentForChildren(), isClean()); statuses_ = null; } return statusesBuilder_; } private java.util.List headers_ = java.util.Collections.emptyList(); private void ensureHeadersIsMutable() { if (!((bitField0_ & 0x00000002) != 0)) { headers_ = new java.util.ArrayList(headers_); bitField0_ |= 0x00000002; } } private com.google.protobuf.RepeatedFieldBuilderV3< io.envoyproxy.envoy.api.v2.core.HeaderValue, io.envoyproxy.envoy.api.v2.core.HeaderValue.Builder, io.envoyproxy.envoy.api.v2.core.HeaderValueOrBuilder> headersBuilder_; /** *
     * A list of headers to add to the response
     * 
* * repeated .envoy.api.v2.core.HeaderValue headers = 3; */ public java.util.List getHeadersList() { if (headersBuilder_ == null) { return java.util.Collections.unmodifiableList(headers_); } else { return headersBuilder_.getMessageList(); } } /** *
     * A list of headers to add to the response
     * 
* * repeated .envoy.api.v2.core.HeaderValue headers = 3; */ public int getHeadersCount() { if (headersBuilder_ == null) { return headers_.size(); } else { return headersBuilder_.getCount(); } } /** *
     * A list of headers to add to the response
     * 
* * repeated .envoy.api.v2.core.HeaderValue headers = 3; */ public io.envoyproxy.envoy.api.v2.core.HeaderValue getHeaders(int index) { if (headersBuilder_ == null) { return headers_.get(index); } else { return headersBuilder_.getMessage(index); } } /** *
     * A list of headers to add to the response
     * 
* * repeated .envoy.api.v2.core.HeaderValue headers = 3; */ public Builder setHeaders( int index, io.envoyproxy.envoy.api.v2.core.HeaderValue value) { if (headersBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureHeadersIsMutable(); headers_.set(index, value); onChanged(); } else { headersBuilder_.setMessage(index, value); } return this; } /** *
     * A list of headers to add to the response
     * 
* * repeated .envoy.api.v2.core.HeaderValue headers = 3; */ public Builder setHeaders( int index, io.envoyproxy.envoy.api.v2.core.HeaderValue.Builder builderForValue) { if (headersBuilder_ == null) { ensureHeadersIsMutable(); headers_.set(index, builderForValue.build()); onChanged(); } else { headersBuilder_.setMessage(index, builderForValue.build()); } return this; } /** *
     * A list of headers to add to the response
     * 
* * repeated .envoy.api.v2.core.HeaderValue headers = 3; */ public Builder addHeaders(io.envoyproxy.envoy.api.v2.core.HeaderValue value) { if (headersBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureHeadersIsMutable(); headers_.add(value); onChanged(); } else { headersBuilder_.addMessage(value); } return this; } /** *
     * A list of headers to add to the response
     * 
* * repeated .envoy.api.v2.core.HeaderValue headers = 3; */ public Builder addHeaders( int index, io.envoyproxy.envoy.api.v2.core.HeaderValue value) { if (headersBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureHeadersIsMutable(); headers_.add(index, value); onChanged(); } else { headersBuilder_.addMessage(index, value); } return this; } /** *
     * A list of headers to add to the response
     * 
* * repeated .envoy.api.v2.core.HeaderValue headers = 3; */ public Builder addHeaders( io.envoyproxy.envoy.api.v2.core.HeaderValue.Builder builderForValue) { if (headersBuilder_ == null) { ensureHeadersIsMutable(); headers_.add(builderForValue.build()); onChanged(); } else { headersBuilder_.addMessage(builderForValue.build()); } return this; } /** *
     * A list of headers to add to the response
     * 
* * repeated .envoy.api.v2.core.HeaderValue headers = 3; */ public Builder addHeaders( int index, io.envoyproxy.envoy.api.v2.core.HeaderValue.Builder builderForValue) { if (headersBuilder_ == null) { ensureHeadersIsMutable(); headers_.add(index, builderForValue.build()); onChanged(); } else { headersBuilder_.addMessage(index, builderForValue.build()); } return this; } /** *
     * A list of headers to add to the response
     * 
* * repeated .envoy.api.v2.core.HeaderValue headers = 3; */ public Builder addAllHeaders( java.lang.Iterable values) { if (headersBuilder_ == null) { ensureHeadersIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, headers_); onChanged(); } else { headersBuilder_.addAllMessages(values); } return this; } /** *
     * A list of headers to add to the response
     * 
* * repeated .envoy.api.v2.core.HeaderValue headers = 3; */ public Builder clearHeaders() { if (headersBuilder_ == null) { headers_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000002); onChanged(); } else { headersBuilder_.clear(); } return this; } /** *
     * A list of headers to add to the response
     * 
* * repeated .envoy.api.v2.core.HeaderValue headers = 3; */ public Builder removeHeaders(int index) { if (headersBuilder_ == null) { ensureHeadersIsMutable(); headers_.remove(index); onChanged(); } else { headersBuilder_.remove(index); } return this; } /** *
     * A list of headers to add to the response
     * 
* * repeated .envoy.api.v2.core.HeaderValue headers = 3; */ public io.envoyproxy.envoy.api.v2.core.HeaderValue.Builder getHeadersBuilder( int index) { return getHeadersFieldBuilder().getBuilder(index); } /** *
     * A list of headers to add to the response
     * 
* * repeated .envoy.api.v2.core.HeaderValue headers = 3; */ public io.envoyproxy.envoy.api.v2.core.HeaderValueOrBuilder getHeadersOrBuilder( int index) { if (headersBuilder_ == null) { return headers_.get(index); } else { return headersBuilder_.getMessageOrBuilder(index); } } /** *
     * A list of headers to add to the response
     * 
* * repeated .envoy.api.v2.core.HeaderValue headers = 3; */ public java.util.List getHeadersOrBuilderList() { if (headersBuilder_ != null) { return headersBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(headers_); } } /** *
     * A list of headers to add to the response
     * 
* * repeated .envoy.api.v2.core.HeaderValue headers = 3; */ public io.envoyproxy.envoy.api.v2.core.HeaderValue.Builder addHeadersBuilder() { return getHeadersFieldBuilder().addBuilder( io.envoyproxy.envoy.api.v2.core.HeaderValue.getDefaultInstance()); } /** *
     * A list of headers to add to the response
     * 
* * repeated .envoy.api.v2.core.HeaderValue headers = 3; */ public io.envoyproxy.envoy.api.v2.core.HeaderValue.Builder addHeadersBuilder( int index) { return getHeadersFieldBuilder().addBuilder( index, io.envoyproxy.envoy.api.v2.core.HeaderValue.getDefaultInstance()); } /** *
     * A list of headers to add to the response
     * 
* * repeated .envoy.api.v2.core.HeaderValue headers = 3; */ public java.util.List getHeadersBuilderList() { return getHeadersFieldBuilder().getBuilderList(); } private com.google.protobuf.RepeatedFieldBuilderV3< io.envoyproxy.envoy.api.v2.core.HeaderValue, io.envoyproxy.envoy.api.v2.core.HeaderValue.Builder, io.envoyproxy.envoy.api.v2.core.HeaderValueOrBuilder> getHeadersFieldBuilder() { if (headersBuilder_ == null) { headersBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< io.envoyproxy.envoy.api.v2.core.HeaderValue, io.envoyproxy.envoy.api.v2.core.HeaderValue.Builder, io.envoyproxy.envoy.api.v2.core.HeaderValueOrBuilder>( headers_, ((bitField0_ & 0x00000002) != 0), getParentForChildren(), isClean()); headers_ = null; } return headersBuilder_; } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @java.lang.Override public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:envoy.service.ratelimit.v2.RateLimitResponse) } // @@protoc_insertion_point(class_scope:envoy.service.ratelimit.v2.RateLimitResponse) private static final io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse(); } public static io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public RateLimitResponse parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new RateLimitResponse(input, extensionRegistry); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public io.envoyproxy.envoy.service.ratelimit.v2.RateLimitResponse getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }