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

com.netflix.conductor.proto.RateLimitConfigPb Maven / Gradle / Ivy

There is a newer version: 3.21.11
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: model/ratelimitconfig.proto

package com.netflix.conductor.proto;

public final class RateLimitConfigPb {
  private RateLimitConfigPb() {}
  public static void registerAllExtensions(
      com.google.protobuf.ExtensionRegistryLite registry) {
  }

  public static void registerAllExtensions(
      com.google.protobuf.ExtensionRegistry registry) {
    registerAllExtensions(
        (com.google.protobuf.ExtensionRegistryLite) registry);
  }
  public interface RateLimitConfigOrBuilder extends
      // @@protoc_insertion_point(interface_extends:conductor.proto.RateLimitConfig)
      com.google.protobuf.MessageOrBuilder {

    /**
     * string rate_limit_key = 1;
     * @return The rateLimitKey.
     */
    java.lang.String getRateLimitKey();
    /**
     * string rate_limit_key = 1;
     * @return The bytes for rateLimitKey.
     */
    com.google.protobuf.ByteString
        getRateLimitKeyBytes();

    /**
     * int32 concurrent_exec_limit = 2;
     * @return The concurrentExecLimit.
     */
    int getConcurrentExecLimit();
  }
  /**
   * Protobuf type {@code conductor.proto.RateLimitConfig}
   */
  public static final class RateLimitConfig extends
      com.google.protobuf.GeneratedMessageV3 implements
      // @@protoc_insertion_point(message_implements:conductor.proto.RateLimitConfig)
      RateLimitConfigOrBuilder {
  private static final long serialVersionUID = 0L;
    // Use RateLimitConfig.newBuilder() to construct.
    private RateLimitConfig(com.google.protobuf.GeneratedMessageV3.Builder builder) {
      super(builder);
    }
    private RateLimitConfig() {
      rateLimitKey_ = "";
    }

    @java.lang.Override
    @SuppressWarnings({"unused"})
    protected java.lang.Object newInstance(
        UnusedPrivateParameter unused) {
      return new RateLimitConfig();
    }

    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
    getUnknownFields() {
      return this.unknownFields;
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return com.netflix.conductor.proto.RateLimitConfigPb.internal_static_conductor_proto_RateLimitConfig_descriptor;
    }

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return com.netflix.conductor.proto.RateLimitConfigPb.internal_static_conductor_proto_RateLimitConfig_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig.class, com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig.Builder.class);
    }

    public static final int RATE_LIMIT_KEY_FIELD_NUMBER = 1;
    @SuppressWarnings("serial")
    private volatile java.lang.Object rateLimitKey_ = "";
    /**
     * string rate_limit_key = 1;
     * @return The rateLimitKey.
     */
    @java.lang.Override
    public java.lang.String getRateLimitKey() {
      java.lang.Object ref = rateLimitKey_;
      if (ref instanceof java.lang.String) {
        return (java.lang.String) ref;
      } else {
        com.google.protobuf.ByteString bs = 
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        rateLimitKey_ = s;
        return s;
      }
    }
    /**
     * string rate_limit_key = 1;
     * @return The bytes for rateLimitKey.
     */
    @java.lang.Override
    public com.google.protobuf.ByteString
        getRateLimitKeyBytes() {
      java.lang.Object ref = rateLimitKey_;
      if (ref instanceof java.lang.String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        rateLimitKey_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }

    public static final int CONCURRENT_EXEC_LIMIT_FIELD_NUMBER = 2;
    private int concurrentExecLimit_ = 0;
    /**
     * int32 concurrent_exec_limit = 2;
     * @return The concurrentExecLimit.
     */
    @java.lang.Override
    public int getConcurrentExecLimit() {
      return concurrentExecLimit_;
    }

    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 (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(rateLimitKey_)) {
        com.google.protobuf.GeneratedMessageV3.writeString(output, 1, rateLimitKey_);
      }
      if (concurrentExecLimit_ != 0) {
        output.writeInt32(2, concurrentExecLimit_);
      }
      getUnknownFields().writeTo(output);
    }

    @java.lang.Override
    public int getSerializedSize() {
      int size = memoizedSize;
      if (size != -1) return size;

      size = 0;
      if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(rateLimitKey_)) {
        size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, rateLimitKey_);
      }
      if (concurrentExecLimit_ != 0) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(2, concurrentExecLimit_);
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSize = size;
      return size;
    }

    @java.lang.Override
    public boolean equals(final java.lang.Object obj) {
      if (obj == this) {
       return true;
      }
      if (!(obj instanceof com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig)) {
        return super.equals(obj);
      }
      com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig other = (com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig) obj;

      if (!getRateLimitKey()
          .equals(other.getRateLimitKey())) return false;
      if (getConcurrentExecLimit()
          != other.getConcurrentExecLimit()) return false;
      if (!getUnknownFields().equals(other.getUnknownFields())) 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) + RATE_LIMIT_KEY_FIELD_NUMBER;
      hash = (53 * hash) + getRateLimitKey().hashCode();
      hash = (37 * hash) + CONCURRENT_EXEC_LIMIT_FIELD_NUMBER;
      hash = (53 * hash) + getConcurrentExecLimit();
      hash = (29 * hash) + getUnknownFields().hashCode();
      memoizedHashCode = hash;
      return hash;
    }

    public static com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig parseFrom(
        java.nio.ByteBuffer data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig parseFrom(
        java.nio.ByteBuffer data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageV3
          .parseWithIOException(PARSER, input);
    }
    public static com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig 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 com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageV3
          .parseDelimitedWithIOException(PARSER, input);
    }
    public static com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig 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 com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageV3
          .parseWithIOException(PARSER, input);
    }
    public static com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig 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(com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig 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 conductor.proto.RateLimitConfig}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessageV3.Builder implements
        // @@protoc_insertion_point(builder_implements:conductor.proto.RateLimitConfig)
        com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfigOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return com.netflix.conductor.proto.RateLimitConfigPb.internal_static_conductor_proto_RateLimitConfig_descriptor;
      }

      @java.lang.Override
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return com.netflix.conductor.proto.RateLimitConfigPb.internal_static_conductor_proto_RateLimitConfig_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig.class, com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig.Builder.class);
      }

      // Construct using com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig.newBuilder()
      private Builder() {

      }

      private Builder(
          com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
        super(parent);

      }
      @java.lang.Override
      public Builder clear() {
        super.clear();
        bitField0_ = 0;
        rateLimitKey_ = "";
        concurrentExecLimit_ = 0;
        return this;
      }

      @java.lang.Override
      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return com.netflix.conductor.proto.RateLimitConfigPb.internal_static_conductor_proto_RateLimitConfig_descriptor;
      }

      @java.lang.Override
      public com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig getDefaultInstanceForType() {
        return com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig.getDefaultInstance();
      }

      @java.lang.Override
      public com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig build() {
        com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      @java.lang.Override
      public com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig buildPartial() {
        com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig result = new com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig(this);
        if (bitField0_ != 0) { buildPartial0(result); }
        onBuilt();
        return result;
      }

      private void buildPartial0(com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig result) {
        int from_bitField0_ = bitField0_;
        if (((from_bitField0_ & 0x00000001) != 0)) {
          result.rateLimitKey_ = rateLimitKey_;
        }
        if (((from_bitField0_ & 0x00000002) != 0)) {
          result.concurrentExecLimit_ = concurrentExecLimit_;
        }
      }

      @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 com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig) {
          return mergeFrom((com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig other) {
        if (other == com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig.getDefaultInstance()) return this;
        if (!other.getRateLimitKey().isEmpty()) {
          rateLimitKey_ = other.rateLimitKey_;
          bitField0_ |= 0x00000001;
          onChanged();
        }
        if (other.getConcurrentExecLimit() != 0) {
          setConcurrentExecLimit(other.getConcurrentExecLimit());
        }
        this.mergeUnknownFields(other.getUnknownFields());
        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 {
        if (extensionRegistry == null) {
          throw new java.lang.NullPointerException();
        }
        try {
          boolean done = false;
          while (!done) {
            int tag = input.readTag();
            switch (tag) {
              case 0:
                done = true;
                break;
              case 10: {
                rateLimitKey_ = input.readStringRequireUtf8();
                bitField0_ |= 0x00000001;
                break;
              } // case 10
              case 16: {
                concurrentExecLimit_ = input.readInt32();
                bitField0_ |= 0x00000002;
                break;
              } // case 16
              default: {
                if (!super.parseUnknownField(input, extensionRegistry, tag)) {
                  done = true; // was an endgroup tag
                }
                break;
              } // default:
            } // switch (tag)
          } // while (!done)
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          throw e.unwrapIOException();
        } finally {
          onChanged();
        } // finally
        return this;
      }
      private int bitField0_;

      private java.lang.Object rateLimitKey_ = "";
      /**
       * string rate_limit_key = 1;
       * @return The rateLimitKey.
       */
      public java.lang.String getRateLimitKey() {
        java.lang.Object ref = rateLimitKey_;
        if (!(ref instanceof java.lang.String)) {
          com.google.protobuf.ByteString bs =
              (com.google.protobuf.ByteString) ref;
          java.lang.String s = bs.toStringUtf8();
          rateLimitKey_ = s;
          return s;
        } else {
          return (java.lang.String) ref;
        }
      }
      /**
       * string rate_limit_key = 1;
       * @return The bytes for rateLimitKey.
       */
      public com.google.protobuf.ByteString
          getRateLimitKeyBytes() {
        java.lang.Object ref = rateLimitKey_;
        if (ref instanceof String) {
          com.google.protobuf.ByteString b = 
              com.google.protobuf.ByteString.copyFromUtf8(
                  (java.lang.String) ref);
          rateLimitKey_ = b;
          return b;
        } else {
          return (com.google.protobuf.ByteString) ref;
        }
      }
      /**
       * string rate_limit_key = 1;
       * @param value The rateLimitKey to set.
       * @return This builder for chaining.
       */
      public Builder setRateLimitKey(
          java.lang.String value) {
        if (value == null) { throw new NullPointerException(); }
        rateLimitKey_ = value;
        bitField0_ |= 0x00000001;
        onChanged();
        return this;
      }
      /**
       * string rate_limit_key = 1;
       * @return This builder for chaining.
       */
      public Builder clearRateLimitKey() {
        rateLimitKey_ = getDefaultInstance().getRateLimitKey();
        bitField0_ = (bitField0_ & ~0x00000001);
        onChanged();
        return this;
      }
      /**
       * string rate_limit_key = 1;
       * @param value The bytes for rateLimitKey to set.
       * @return This builder for chaining.
       */
      public Builder setRateLimitKeyBytes(
          com.google.protobuf.ByteString value) {
        if (value == null) { throw new NullPointerException(); }
        checkByteStringIsUtf8(value);
        rateLimitKey_ = value;
        bitField0_ |= 0x00000001;
        onChanged();
        return this;
      }

      private int concurrentExecLimit_ ;
      /**
       * int32 concurrent_exec_limit = 2;
       * @return The concurrentExecLimit.
       */
      @java.lang.Override
      public int getConcurrentExecLimit() {
        return concurrentExecLimit_;
      }
      /**
       * int32 concurrent_exec_limit = 2;
       * @param value The concurrentExecLimit to set.
       * @return This builder for chaining.
       */
      public Builder setConcurrentExecLimit(int value) {
        
        concurrentExecLimit_ = value;
        bitField0_ |= 0x00000002;
        onChanged();
        return this;
      }
      /**
       * int32 concurrent_exec_limit = 2;
       * @return This builder for chaining.
       */
      public Builder clearConcurrentExecLimit() {
        bitField0_ = (bitField0_ & ~0x00000002);
        concurrentExecLimit_ = 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:conductor.proto.RateLimitConfig)
    }

    // @@protoc_insertion_point(class_scope:conductor.proto.RateLimitConfig)
    private static final com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig DEFAULT_INSTANCE;
    static {
      DEFAULT_INSTANCE = new com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig();
    }

    public static com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig getDefaultInstance() {
      return DEFAULT_INSTANCE;
    }

    private static final com.google.protobuf.Parser
        PARSER = new com.google.protobuf.AbstractParser() {
      @java.lang.Override
      public RateLimitConfig parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        Builder builder = newBuilder();
        try {
          builder.mergeFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          throw e.setUnfinishedMessage(builder.buildPartial());
        } catch (com.google.protobuf.UninitializedMessageException e) {
          throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
        } catch (java.io.IOException e) {
          throw new com.google.protobuf.InvalidProtocolBufferException(e)
              .setUnfinishedMessage(builder.buildPartial());
        }
        return builder.buildPartial();
      }
    };

    public static com.google.protobuf.Parser parser() {
      return PARSER;
    }

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    @java.lang.Override
    public com.netflix.conductor.proto.RateLimitConfigPb.RateLimitConfig getDefaultInstanceForType() {
      return DEFAULT_INSTANCE;
    }

  }

  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_conductor_proto_RateLimitConfig_descriptor;
  private static final 
    com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internal_static_conductor_proto_RateLimitConfig_fieldAccessorTable;

  public static com.google.protobuf.Descriptors.FileDescriptor
      getDescriptor() {
    return descriptor;
  }
  private static  com.google.protobuf.Descriptors.FileDescriptor
      descriptor;
  static {
    java.lang.String[] descriptorData = {
      "\n\033model/ratelimitconfig.proto\022\017conductor" +
      ".proto\"H\n\017RateLimitConfig\022\026\n\016rate_limit_" +
      "key\030\001 \001(\t\022\035\n\025concurrent_exec_limit\030\002 \001(\005" +
      "Bl\n\033com.netflix.conductor.protoB\021RateLim" +
      "itConfigPbZ:github.com/netflix/conductor" +
      "/client/gogrpc/conductor/modelb\006proto3"
    };
    descriptor = com.google.protobuf.Descriptors.FileDescriptor
      .internalBuildGeneratedFileFrom(descriptorData,
        new com.google.protobuf.Descriptors.FileDescriptor[] {
        });
    internal_static_conductor_proto_RateLimitConfig_descriptor =
      getDescriptor().getMessageTypes().get(0);
    internal_static_conductor_proto_RateLimitConfig_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
        internal_static_conductor_proto_RateLimitConfig_descriptor,
        new java.lang.String[] { "RateLimitKey", "ConcurrentExecLimit", });
  }

  // @@protoc_insertion_point(outer_class_scope)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy