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

grpc.cache_client._HttpSetRequest Maven / Gradle / Ivy

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

package grpc.cache_client;

/**
 * Protobuf type {@code cache_client._HttpSetRequest}
 */
public final class _HttpSetRequest extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:cache_client._HttpSetRequest)
    _HttpSetRequestOrBuilder {
private static final long serialVersionUID = 0L;
  // Use _HttpSetRequest.newBuilder() to construct.
  private _HttpSetRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private _HttpSetRequest() {
    cacheName_ = "";
    cacheKey_ = "";
    token_ = "";
  }

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

  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return grpc.cache_client.Httpcache.internal_static_cache_client__HttpSetRequest_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return grpc.cache_client.Httpcache.internal_static_cache_client__HttpSetRequest_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            grpc.cache_client._HttpSetRequest.class, grpc.cache_client._HttpSetRequest.Builder.class);
  }

  public static final int CACHE_NAME_FIELD_NUMBER = 1;
  @SuppressWarnings("serial")
  private volatile java.lang.Object cacheName_ = "";
  /**
   * string cache_name = 1;
   * @return The cacheName.
   */
  @java.lang.Override
  public java.lang.String getCacheName() {
    java.lang.Object ref = cacheName_;
    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();
      cacheName_ = s;
      return s;
    }
  }
  /**
   * string cache_name = 1;
   * @return The bytes for cacheName.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString
      getCacheNameBytes() {
    java.lang.Object ref = cacheName_;
    if (ref instanceof java.lang.String) {
      com.google.protobuf.ByteString b = 
          com.google.protobuf.ByteString.copyFromUtf8(
              (java.lang.String) ref);
      cacheName_ = b;
      return b;
    } else {
      return (com.google.protobuf.ByteString) ref;
    }
  }

  public static final int CACHE_KEY_FIELD_NUMBER = 2;
  @SuppressWarnings("serial")
  private volatile java.lang.Object cacheKey_ = "";
  /**
   * string cache_key = 2;
   * @return The cacheKey.
   */
  @java.lang.Override
  public java.lang.String getCacheKey() {
    java.lang.Object ref = cacheKey_;
    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();
      cacheKey_ = s;
      return s;
    }
  }
  /**
   * string cache_key = 2;
   * @return The bytes for cacheKey.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString
      getCacheKeyBytes() {
    java.lang.Object ref = cacheKey_;
    if (ref instanceof java.lang.String) {
      com.google.protobuf.ByteString b = 
          com.google.protobuf.ByteString.copyFromUtf8(
              (java.lang.String) ref);
      cacheKey_ = b;
      return b;
    } else {
      return (com.google.protobuf.ByteString) ref;
    }
  }

  public static final int TTL_MILLISECONDS_FIELD_NUMBER = 3;
  private long ttlMilliseconds_ = 0L;
  /**
   * uint64 ttl_milliseconds = 3;
   * @return The ttlMilliseconds.
   */
  @java.lang.Override
  public long getTtlMilliseconds() {
    return ttlMilliseconds_;
  }

  public static final int TOKEN_FIELD_NUMBER = 4;
  @SuppressWarnings("serial")
  private volatile java.lang.Object token_ = "";
  /**
   * string token = 4;
   * @return The token.
   */
  @java.lang.Override
  public java.lang.String getToken() {
    java.lang.Object ref = token_;
    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();
      token_ = s;
      return s;
    }
  }
  /**
   * string token = 4;
   * @return The bytes for token.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString
      getTokenBytes() {
    java.lang.Object ref = token_;
    if (ref instanceof java.lang.String) {
      com.google.protobuf.ByteString b = 
          com.google.protobuf.ByteString.copyFromUtf8(
              (java.lang.String) ref);
      token_ = b;
      return b;
    } else {
      return (com.google.protobuf.ByteString) ref;
    }
  }

  public static final int CACHE_BODY_FIELD_NUMBER = 5;
  private com.google.api.HttpBody cacheBody_;
  /**
   * .google.api.HttpBody cache_body = 5;
   * @return Whether the cacheBody field is set.
   */
  @java.lang.Override
  public boolean hasCacheBody() {
    return cacheBody_ != null;
  }
  /**
   * .google.api.HttpBody cache_body = 5;
   * @return The cacheBody.
   */
  @java.lang.Override
  public com.google.api.HttpBody getCacheBody() {
    return cacheBody_ == null ? com.google.api.HttpBody.getDefaultInstance() : cacheBody_;
  }
  /**
   * .google.api.HttpBody cache_body = 5;
   */
  @java.lang.Override
  public com.google.api.HttpBodyOrBuilder getCacheBodyOrBuilder() {
    return cacheBody_ == null ? com.google.api.HttpBody.getDefaultInstance() : cacheBody_;
  }

  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(cacheName_)) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 1, cacheName_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(cacheKey_)) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 2, cacheKey_);
    }
    if (ttlMilliseconds_ != 0L) {
      output.writeUInt64(3, ttlMilliseconds_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(token_)) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 4, token_);
    }
    if (cacheBody_ != null) {
      output.writeMessage(5, getCacheBody());
    }
    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(cacheName_)) {
      size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, cacheName_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(cacheKey_)) {
      size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, cacheKey_);
    }
    if (ttlMilliseconds_ != 0L) {
      size += com.google.protobuf.CodedOutputStream
        .computeUInt64Size(3, ttlMilliseconds_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(token_)) {
      size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, token_);
    }
    if (cacheBody_ != null) {
      size += com.google.protobuf.CodedOutputStream
        .computeMessageSize(5, getCacheBody());
    }
    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 grpc.cache_client._HttpSetRequest)) {
      return super.equals(obj);
    }
    grpc.cache_client._HttpSetRequest other = (grpc.cache_client._HttpSetRequest) obj;

    if (!getCacheName()
        .equals(other.getCacheName())) return false;
    if (!getCacheKey()
        .equals(other.getCacheKey())) return false;
    if (getTtlMilliseconds()
        != other.getTtlMilliseconds()) return false;
    if (!getToken()
        .equals(other.getToken())) return false;
    if (hasCacheBody() != other.hasCacheBody()) return false;
    if (hasCacheBody()) {
      if (!getCacheBody()
          .equals(other.getCacheBody())) 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) + CACHE_NAME_FIELD_NUMBER;
    hash = (53 * hash) + getCacheName().hashCode();
    hash = (37 * hash) + CACHE_KEY_FIELD_NUMBER;
    hash = (53 * hash) + getCacheKey().hashCode();
    hash = (37 * hash) + TTL_MILLISECONDS_FIELD_NUMBER;
    hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
        getTtlMilliseconds());
    hash = (37 * hash) + TOKEN_FIELD_NUMBER;
    hash = (53 * hash) + getToken().hashCode();
    if (hasCacheBody()) {
      hash = (37 * hash) + CACHE_BODY_FIELD_NUMBER;
      hash = (53 * hash) + getCacheBody().hashCode();
    }
    hash = (29 * hash) + getUnknownFields().hashCode();
    memoizedHashCode = hash;
    return hash;
  }

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

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return grpc.cache_client.Httpcache.internal_static_cache_client__HttpSetRequest_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              grpc.cache_client._HttpSetRequest.class, grpc.cache_client._HttpSetRequest.Builder.class);
    }

    // Construct using grpc.cache_client._HttpSetRequest.newBuilder()
    private Builder() {

    }

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

    }
    @java.lang.Override
    public Builder clear() {
      super.clear();
      bitField0_ = 0;
      cacheName_ = "";
      cacheKey_ = "";
      ttlMilliseconds_ = 0L;
      token_ = "";
      cacheBody_ = null;
      if (cacheBodyBuilder_ != null) {
        cacheBodyBuilder_.dispose();
        cacheBodyBuilder_ = null;
      }
      return this;
    }

    @java.lang.Override
    public com.google.protobuf.Descriptors.Descriptor
        getDescriptorForType() {
      return grpc.cache_client.Httpcache.internal_static_cache_client__HttpSetRequest_descriptor;
    }

    @java.lang.Override
    public grpc.cache_client._HttpSetRequest getDefaultInstanceForType() {
      return grpc.cache_client._HttpSetRequest.getDefaultInstance();
    }

    @java.lang.Override
    public grpc.cache_client._HttpSetRequest build() {
      grpc.cache_client._HttpSetRequest result = buildPartial();
      if (!result.isInitialized()) {
        throw newUninitializedMessageException(result);
      }
      return result;
    }

    @java.lang.Override
    public grpc.cache_client._HttpSetRequest buildPartial() {
      grpc.cache_client._HttpSetRequest result = new grpc.cache_client._HttpSetRequest(this);
      if (bitField0_ != 0) { buildPartial0(result); }
      onBuilt();
      return result;
    }

    private void buildPartial0(grpc.cache_client._HttpSetRequest result) {
      int from_bitField0_ = bitField0_;
      if (((from_bitField0_ & 0x00000001) != 0)) {
        result.cacheName_ = cacheName_;
      }
      if (((from_bitField0_ & 0x00000002) != 0)) {
        result.cacheKey_ = cacheKey_;
      }
      if (((from_bitField0_ & 0x00000004) != 0)) {
        result.ttlMilliseconds_ = ttlMilliseconds_;
      }
      if (((from_bitField0_ & 0x00000008) != 0)) {
        result.token_ = token_;
      }
      if (((from_bitField0_ & 0x00000010) != 0)) {
        result.cacheBody_ = cacheBodyBuilder_ == null
            ? cacheBody_
            : cacheBodyBuilder_.build();
      }
    }

    @java.lang.Override
    public Builder mergeFrom(com.google.protobuf.Message other) {
      if (other instanceof grpc.cache_client._HttpSetRequest) {
        return mergeFrom((grpc.cache_client._HttpSetRequest)other);
      } else {
        super.mergeFrom(other);
        return this;
      }
    }

    public Builder mergeFrom(grpc.cache_client._HttpSetRequest other) {
      if (other == grpc.cache_client._HttpSetRequest.getDefaultInstance()) return this;
      if (!other.getCacheName().isEmpty()) {
        cacheName_ = other.cacheName_;
        bitField0_ |= 0x00000001;
        onChanged();
      }
      if (!other.getCacheKey().isEmpty()) {
        cacheKey_ = other.cacheKey_;
        bitField0_ |= 0x00000002;
        onChanged();
      }
      if (other.getTtlMilliseconds() != 0L) {
        setTtlMilliseconds(other.getTtlMilliseconds());
      }
      if (!other.getToken().isEmpty()) {
        token_ = other.token_;
        bitField0_ |= 0x00000008;
        onChanged();
      }
      if (other.hasCacheBody()) {
        mergeCacheBody(other.getCacheBody());
      }
      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: {
              cacheName_ = input.readStringRequireUtf8();
              bitField0_ |= 0x00000001;
              break;
            } // case 10
            case 18: {
              cacheKey_ = input.readStringRequireUtf8();
              bitField0_ |= 0x00000002;
              break;
            } // case 18
            case 24: {
              ttlMilliseconds_ = input.readUInt64();
              bitField0_ |= 0x00000004;
              break;
            } // case 24
            case 34: {
              token_ = input.readStringRequireUtf8();
              bitField0_ |= 0x00000008;
              break;
            } // case 34
            case 42: {
              input.readMessage(
                  getCacheBodyFieldBuilder().getBuilder(),
                  extensionRegistry);
              bitField0_ |= 0x00000010;
              break;
            } // case 42
            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 cacheName_ = "";
    /**
     * string cache_name = 1;
     * @return The cacheName.
     */
    public java.lang.String getCacheName() {
      java.lang.Object ref = cacheName_;
      if (!(ref instanceof java.lang.String)) {
        com.google.protobuf.ByteString bs =
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        cacheName_ = s;
        return s;
      } else {
        return (java.lang.String) ref;
      }
    }
    /**
     * string cache_name = 1;
     * @return The bytes for cacheName.
     */
    public com.google.protobuf.ByteString
        getCacheNameBytes() {
      java.lang.Object ref = cacheName_;
      if (ref instanceof String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        cacheName_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }
    /**
     * string cache_name = 1;
     * @param value The cacheName to set.
     * @return This builder for chaining.
     */
    public Builder setCacheName(
        java.lang.String value) {
      if (value == null) { throw new NullPointerException(); }
      cacheName_ = value;
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * string cache_name = 1;
     * @return This builder for chaining.
     */
    public Builder clearCacheName() {
      cacheName_ = getDefaultInstance().getCacheName();
      bitField0_ = (bitField0_ & ~0x00000001);
      onChanged();
      return this;
    }
    /**
     * string cache_name = 1;
     * @param value The bytes for cacheName to set.
     * @return This builder for chaining.
     */
    public Builder setCacheNameBytes(
        com.google.protobuf.ByteString value) {
      if (value == null) { throw new NullPointerException(); }
      checkByteStringIsUtf8(value);
      cacheName_ = value;
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }

    private java.lang.Object cacheKey_ = "";
    /**
     * string cache_key = 2;
     * @return The cacheKey.
     */
    public java.lang.String getCacheKey() {
      java.lang.Object ref = cacheKey_;
      if (!(ref instanceof java.lang.String)) {
        com.google.protobuf.ByteString bs =
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        cacheKey_ = s;
        return s;
      } else {
        return (java.lang.String) ref;
      }
    }
    /**
     * string cache_key = 2;
     * @return The bytes for cacheKey.
     */
    public com.google.protobuf.ByteString
        getCacheKeyBytes() {
      java.lang.Object ref = cacheKey_;
      if (ref instanceof String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        cacheKey_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }
    /**
     * string cache_key = 2;
     * @param value The cacheKey to set.
     * @return This builder for chaining.
     */
    public Builder setCacheKey(
        java.lang.String value) {
      if (value == null) { throw new NullPointerException(); }
      cacheKey_ = value;
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }
    /**
     * string cache_key = 2;
     * @return This builder for chaining.
     */
    public Builder clearCacheKey() {
      cacheKey_ = getDefaultInstance().getCacheKey();
      bitField0_ = (bitField0_ & ~0x00000002);
      onChanged();
      return this;
    }
    /**
     * string cache_key = 2;
     * @param value The bytes for cacheKey to set.
     * @return This builder for chaining.
     */
    public Builder setCacheKeyBytes(
        com.google.protobuf.ByteString value) {
      if (value == null) { throw new NullPointerException(); }
      checkByteStringIsUtf8(value);
      cacheKey_ = value;
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }

    private long ttlMilliseconds_ ;
    /**
     * uint64 ttl_milliseconds = 3;
     * @return The ttlMilliseconds.
     */
    @java.lang.Override
    public long getTtlMilliseconds() {
      return ttlMilliseconds_;
    }
    /**
     * uint64 ttl_milliseconds = 3;
     * @param value The ttlMilliseconds to set.
     * @return This builder for chaining.
     */
    public Builder setTtlMilliseconds(long value) {

      ttlMilliseconds_ = value;
      bitField0_ |= 0x00000004;
      onChanged();
      return this;
    }
    /**
     * uint64 ttl_milliseconds = 3;
     * @return This builder for chaining.
     */
    public Builder clearTtlMilliseconds() {
      bitField0_ = (bitField0_ & ~0x00000004);
      ttlMilliseconds_ = 0L;
      onChanged();
      return this;
    }

    private java.lang.Object token_ = "";
    /**
     * string token = 4;
     * @return The token.
     */
    public java.lang.String getToken() {
      java.lang.Object ref = token_;
      if (!(ref instanceof java.lang.String)) {
        com.google.protobuf.ByteString bs =
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        token_ = s;
        return s;
      } else {
        return (java.lang.String) ref;
      }
    }
    /**
     * string token = 4;
     * @return The bytes for token.
     */
    public com.google.protobuf.ByteString
        getTokenBytes() {
      java.lang.Object ref = token_;
      if (ref instanceof String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        token_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }
    /**
     * string token = 4;
     * @param value The token to set.
     * @return This builder for chaining.
     */
    public Builder setToken(
        java.lang.String value) {
      if (value == null) { throw new NullPointerException(); }
      token_ = value;
      bitField0_ |= 0x00000008;
      onChanged();
      return this;
    }
    /**
     * string token = 4;
     * @return This builder for chaining.
     */
    public Builder clearToken() {
      token_ = getDefaultInstance().getToken();
      bitField0_ = (bitField0_ & ~0x00000008);
      onChanged();
      return this;
    }
    /**
     * string token = 4;
     * @param value The bytes for token to set.
     * @return This builder for chaining.
     */
    public Builder setTokenBytes(
        com.google.protobuf.ByteString value) {
      if (value == null) { throw new NullPointerException(); }
      checkByteStringIsUtf8(value);
      token_ = value;
      bitField0_ |= 0x00000008;
      onChanged();
      return this;
    }

    private com.google.api.HttpBody cacheBody_;
    private com.google.protobuf.SingleFieldBuilderV3<
        com.google.api.HttpBody, com.google.api.HttpBody.Builder, com.google.api.HttpBodyOrBuilder> cacheBodyBuilder_;
    /**
     * .google.api.HttpBody cache_body = 5;
     * @return Whether the cacheBody field is set.
     */
    public boolean hasCacheBody() {
      return ((bitField0_ & 0x00000010) != 0);
    }
    /**
     * .google.api.HttpBody cache_body = 5;
     * @return The cacheBody.
     */
    public com.google.api.HttpBody getCacheBody() {
      if (cacheBodyBuilder_ == null) {
        return cacheBody_ == null ? com.google.api.HttpBody.getDefaultInstance() : cacheBody_;
      } else {
        return cacheBodyBuilder_.getMessage();
      }
    }
    /**
     * .google.api.HttpBody cache_body = 5;
     */
    public Builder setCacheBody(com.google.api.HttpBody value) {
      if (cacheBodyBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        cacheBody_ = value;
      } else {
        cacheBodyBuilder_.setMessage(value);
      }
      bitField0_ |= 0x00000010;
      onChanged();
      return this;
    }
    /**
     * .google.api.HttpBody cache_body = 5;
     */
    public Builder setCacheBody(
        com.google.api.HttpBody.Builder builderForValue) {
      if (cacheBodyBuilder_ == null) {
        cacheBody_ = builderForValue.build();
      } else {
        cacheBodyBuilder_.setMessage(builderForValue.build());
      }
      bitField0_ |= 0x00000010;
      onChanged();
      return this;
    }
    /**
     * .google.api.HttpBody cache_body = 5;
     */
    public Builder mergeCacheBody(com.google.api.HttpBody value) {
      if (cacheBodyBuilder_ == null) {
        if (((bitField0_ & 0x00000010) != 0) &&
          cacheBody_ != null &&
          cacheBody_ != com.google.api.HttpBody.getDefaultInstance()) {
          getCacheBodyBuilder().mergeFrom(value);
        } else {
          cacheBody_ = value;
        }
      } else {
        cacheBodyBuilder_.mergeFrom(value);
      }
      bitField0_ |= 0x00000010;
      onChanged();
      return this;
    }
    /**
     * .google.api.HttpBody cache_body = 5;
     */
    public Builder clearCacheBody() {
      bitField0_ = (bitField0_ & ~0x00000010);
      cacheBody_ = null;
      if (cacheBodyBuilder_ != null) {
        cacheBodyBuilder_.dispose();
        cacheBodyBuilder_ = null;
      }
      onChanged();
      return this;
    }
    /**
     * .google.api.HttpBody cache_body = 5;
     */
    public com.google.api.HttpBody.Builder getCacheBodyBuilder() {
      bitField0_ |= 0x00000010;
      onChanged();
      return getCacheBodyFieldBuilder().getBuilder();
    }
    /**
     * .google.api.HttpBody cache_body = 5;
     */
    public com.google.api.HttpBodyOrBuilder getCacheBodyOrBuilder() {
      if (cacheBodyBuilder_ != null) {
        return cacheBodyBuilder_.getMessageOrBuilder();
      } else {
        return cacheBody_ == null ?
            com.google.api.HttpBody.getDefaultInstance() : cacheBody_;
      }
    }
    /**
     * .google.api.HttpBody cache_body = 5;
     */
    private com.google.protobuf.SingleFieldBuilderV3<
        com.google.api.HttpBody, com.google.api.HttpBody.Builder, com.google.api.HttpBodyOrBuilder> 
        getCacheBodyFieldBuilder() {
      if (cacheBodyBuilder_ == null) {
        cacheBodyBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
            com.google.api.HttpBody, com.google.api.HttpBody.Builder, com.google.api.HttpBodyOrBuilder>(
                getCacheBody(),
                getParentForChildren(),
                isClean());
        cacheBody_ = null;
      }
      return cacheBodyBuilder_;
    }
    @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:cache_client._HttpSetRequest)
  }

  // @@protoc_insertion_point(class_scope:cache_client._HttpSetRequest)
  private static final grpc.cache_client._HttpSetRequest DEFAULT_INSTANCE;
  static {
    DEFAULT_INSTANCE = new grpc.cache_client._HttpSetRequest();
  }

  public static grpc.cache_client._HttpSetRequest getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

  private static final com.google.protobuf.Parser<_HttpSetRequest>
      PARSER = new com.google.protobuf.AbstractParser<_HttpSetRequest>() {
    @java.lang.Override
    public _HttpSetRequest 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<_HttpSetRequest> parser() {
    return PARSER;
  }

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

  @java.lang.Override
  public grpc.cache_client._HttpSetRequest getDefaultInstanceForType() {
    return DEFAULT_INSTANCE;
  }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy