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

com.ibm.etcd.api.StatusResponse Maven / Gradle / Ivy

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

package com.ibm.etcd.api;

/**
 * Protobuf type {@code etcdserverpb.StatusResponse}
 */
public final class StatusResponse extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:etcdserverpb.StatusResponse)
    StatusResponseOrBuilder {
private static final long serialVersionUID = 0L;
  // Use StatusResponse.newBuilder() to construct.
  private StatusResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private StatusResponse() {
    version_ = "";
    errors_ = com.google.protobuf.LazyStringArrayList.EMPTY;
  }

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

  @java.lang.Override
  public final com.google.protobuf.UnknownFieldSet
  getUnknownFields() {
    return this.unknownFields;
  }
  private StatusResponse(
      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 10: {
            com.ibm.etcd.api.ResponseHeader.Builder subBuilder = null;
            if (header_ != null) {
              subBuilder = header_.toBuilder();
            }
            header_ = input.readMessage(com.ibm.etcd.api.ResponseHeader.parser(), extensionRegistry);
            if (subBuilder != null) {
              subBuilder.mergeFrom(header_);
              header_ = subBuilder.buildPartial();
            }

            break;
          }
          case 18: {
            java.lang.String s = input.readStringRequireUtf8();

            version_ = s;
            break;
          }
          case 24: {

            dbSize_ = input.readInt64();
            break;
          }
          case 32: {

            leader_ = input.readUInt64();
            break;
          }
          case 40: {

            raftIndex_ = input.readUInt64();
            break;
          }
          case 48: {

            raftTerm_ = input.readUInt64();
            break;
          }
          case 56: {

            raftAppliedIndex_ = input.readUInt64();
            break;
          }
          case 66: {
            java.lang.String s = input.readStringRequireUtf8();
            if (!((mutable_bitField0_ & 0x00000001) != 0)) {
              errors_ = new com.google.protobuf.LazyStringArrayList();
              mutable_bitField0_ |= 0x00000001;
            }
            errors_.add(s);
            break;
          }
          case 72: {

            dbSizeInUse_ = input.readInt64();
            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)) {
        errors_ = errors_.getUnmodifiableView();
      }
      this.unknownFields = unknownFields.build();
      makeExtensionsImmutable();
    }
  }
  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return com.ibm.etcd.api.Rpc.internal_static_etcdserverpb_StatusResponse_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return com.ibm.etcd.api.Rpc.internal_static_etcdserverpb_StatusResponse_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            com.ibm.etcd.api.StatusResponse.class, com.ibm.etcd.api.StatusResponse.Builder.class);
  }

  public static final int HEADER_FIELD_NUMBER = 1;
  private com.ibm.etcd.api.ResponseHeader header_;
  /**
   * .etcdserverpb.ResponseHeader header = 1;
   * @return Whether the header field is set.
   */
  @java.lang.Override
  public boolean hasHeader() {
    return header_ != null;
  }
  /**
   * .etcdserverpb.ResponseHeader header = 1;
   * @return The header.
   */
  @java.lang.Override
  public com.ibm.etcd.api.ResponseHeader getHeader() {
    return header_ == null ? com.ibm.etcd.api.ResponseHeader.getDefaultInstance() : header_;
  }
  /**
   * .etcdserverpb.ResponseHeader header = 1;
   */
  @java.lang.Override
  public com.ibm.etcd.api.ResponseHeaderOrBuilder getHeaderOrBuilder() {
    return getHeader();
  }

  public static final int VERSION_FIELD_NUMBER = 2;
  private volatile java.lang.Object version_;
  /**
   * 
   * version is the cluster protocol version used by the responding member.
   * 
* * string version = 2; * @return The version. */ @java.lang.Override public java.lang.String getVersion() { java.lang.Object ref = version_; 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(); version_ = s; return s; } } /** *
   * version is the cluster protocol version used by the responding member.
   * 
* * string version = 2; * @return The bytes for version. */ @java.lang.Override public com.google.protobuf.ByteString getVersionBytes() { java.lang.Object ref = version_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); version_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int DBSIZE_FIELD_NUMBER = 3; private long dbSize_; /** *
   * dbSize is the size of the backend database physically allocated, in bytes, of the responding member.
   * 
* * int64 dbSize = 3; * @return The dbSize. */ @java.lang.Override public long getDbSize() { return dbSize_; } public static final int LEADER_FIELD_NUMBER = 4; private long leader_; /** *
   * leader is the member ID which the responding member believes is the current leader.
   * 
* * uint64 leader = 4; * @return The leader. */ @java.lang.Override public long getLeader() { return leader_; } public static final int RAFTINDEX_FIELD_NUMBER = 5; private long raftIndex_; /** *
   * raftIndex is the current raft committed index of the responding member.
   * 
* * uint64 raftIndex = 5; * @return The raftIndex. */ @java.lang.Override public long getRaftIndex() { return raftIndex_; } public static final int RAFTTERM_FIELD_NUMBER = 6; private long raftTerm_; /** *
   * raftTerm is the current raft term of the responding member.
   * 
* * uint64 raftTerm = 6; * @return The raftTerm. */ @java.lang.Override public long getRaftTerm() { return raftTerm_; } public static final int RAFTAPPLIEDINDEX_FIELD_NUMBER = 7; private long raftAppliedIndex_; /** *
   * raftAppliedIndex is the current raft applied index of the responding member.
   * 
* * uint64 raftAppliedIndex = 7; * @return The raftAppliedIndex. */ @java.lang.Override public long getRaftAppliedIndex() { return raftAppliedIndex_; } public static final int ERRORS_FIELD_NUMBER = 8; private com.google.protobuf.LazyStringList errors_; /** *
   * errors contains alarm/health information and status.
   * 
* * repeated string errors = 8; * @return A list containing the errors. */ public com.google.protobuf.ProtocolStringList getErrorsList() { return errors_; } /** *
   * errors contains alarm/health information and status.
   * 
* * repeated string errors = 8; * @return The count of errors. */ public int getErrorsCount() { return errors_.size(); } /** *
   * errors contains alarm/health information and status.
   * 
* * repeated string errors = 8; * @param index The index of the element to return. * @return The errors at the given index. */ public java.lang.String getErrors(int index) { return errors_.get(index); } /** *
   * errors contains alarm/health information and status.
   * 
* * repeated string errors = 8; * @param index The index of the value to return. * @return The bytes of the errors at the given index. */ public com.google.protobuf.ByteString getErrorsBytes(int index) { return errors_.getByteString(index); } public static final int DBSIZEINUSE_FIELD_NUMBER = 9; private long dbSizeInUse_; /** *
   * dbSizeInUse is the size of the backend database logically in use, in bytes, of the responding member.
   * 
* * int64 dbSizeInUse = 9; * @return The dbSizeInUse. */ @java.lang.Override public long getDbSizeInUse() { return dbSizeInUse_; } 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 (header_ != null) { output.writeMessage(1, getHeader()); } if (!getVersionBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, version_); } if (dbSize_ != 0L) { output.writeInt64(3, dbSize_); } if (leader_ != 0L) { output.writeUInt64(4, leader_); } if (raftIndex_ != 0L) { output.writeUInt64(5, raftIndex_); } if (raftTerm_ != 0L) { output.writeUInt64(6, raftTerm_); } if (raftAppliedIndex_ != 0L) { output.writeUInt64(7, raftAppliedIndex_); } for (int i = 0; i < errors_.size(); i++) { com.google.protobuf.GeneratedMessageV3.writeString(output, 8, errors_.getRaw(i)); } if (dbSizeInUse_ != 0L) { output.writeInt64(9, dbSizeInUse_); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (header_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, getHeader()); } if (!getVersionBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, version_); } if (dbSize_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(3, dbSize_); } if (leader_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeUInt64Size(4, leader_); } if (raftIndex_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeUInt64Size(5, raftIndex_); } if (raftTerm_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeUInt64Size(6, raftTerm_); } if (raftAppliedIndex_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeUInt64Size(7, raftAppliedIndex_); } { int dataSize = 0; for (int i = 0; i < errors_.size(); i++) { dataSize += computeStringSizeNoTag(errors_.getRaw(i)); } size += dataSize; size += 1 * getErrorsList().size(); } if (dbSizeInUse_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(9, dbSizeInUse_); } 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 com.ibm.etcd.api.StatusResponse)) { return super.equals(obj); } com.ibm.etcd.api.StatusResponse other = (com.ibm.etcd.api.StatusResponse) obj; if (hasHeader() != other.hasHeader()) return false; if (hasHeader()) { if (!getHeader() .equals(other.getHeader())) return false; } if (!getVersion() .equals(other.getVersion())) return false; if (getDbSize() != other.getDbSize()) return false; if (getLeader() != other.getLeader()) return false; if (getRaftIndex() != other.getRaftIndex()) return false; if (getRaftTerm() != other.getRaftTerm()) return false; if (getRaftAppliedIndex() != other.getRaftAppliedIndex()) return false; if (!getErrorsList() .equals(other.getErrorsList())) return false; if (getDbSizeInUse() != other.getDbSizeInUse()) 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(); if (hasHeader()) { hash = (37 * hash) + HEADER_FIELD_NUMBER; hash = (53 * hash) + getHeader().hashCode(); } hash = (37 * hash) + VERSION_FIELD_NUMBER; hash = (53 * hash) + getVersion().hashCode(); hash = (37 * hash) + DBSIZE_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getDbSize()); hash = (37 * hash) + LEADER_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getLeader()); hash = (37 * hash) + RAFTINDEX_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getRaftIndex()); hash = (37 * hash) + RAFTTERM_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getRaftTerm()); hash = (37 * hash) + RAFTAPPLIEDINDEX_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getRaftAppliedIndex()); if (getErrorsCount() > 0) { hash = (37 * hash) + ERRORS_FIELD_NUMBER; hash = (53 * hash) + getErrorsList().hashCode(); } hash = (37 * hash) + DBSIZEINUSE_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getDbSizeInUse()); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static com.ibm.etcd.api.StatusResponse parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.ibm.etcd.api.StatusResponse parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.ibm.etcd.api.StatusResponse parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.ibm.etcd.api.StatusResponse parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.ibm.etcd.api.StatusResponse parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.ibm.etcd.api.StatusResponse parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.ibm.etcd.api.StatusResponse parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.ibm.etcd.api.StatusResponse 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.ibm.etcd.api.StatusResponse parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.ibm.etcd.api.StatusResponse 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.ibm.etcd.api.StatusResponse parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.ibm.etcd.api.StatusResponse 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.ibm.etcd.api.StatusResponse 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 etcdserverpb.StatusResponse} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:etcdserverpb.StatusResponse) com.ibm.etcd.api.StatusResponseOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.ibm.etcd.api.Rpc.internal_static_etcdserverpb_StatusResponse_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.ibm.etcd.api.Rpc.internal_static_etcdserverpb_StatusResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( com.ibm.etcd.api.StatusResponse.class, com.ibm.etcd.api.StatusResponse.Builder.class); } // Construct using com.ibm.etcd.api.StatusResponse.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(); if (headerBuilder_ == null) { header_ = null; } else { header_ = null; headerBuilder_ = null; } version_ = ""; dbSize_ = 0L; leader_ = 0L; raftIndex_ = 0L; raftTerm_ = 0L; raftAppliedIndex_ = 0L; errors_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000001); dbSizeInUse_ = 0L; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.ibm.etcd.api.Rpc.internal_static_etcdserverpb_StatusResponse_descriptor; } @java.lang.Override public com.ibm.etcd.api.StatusResponse getDefaultInstanceForType() { return com.ibm.etcd.api.StatusResponse.getDefaultInstance(); } @java.lang.Override public com.ibm.etcd.api.StatusResponse build() { com.ibm.etcd.api.StatusResponse result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.ibm.etcd.api.StatusResponse buildPartial() { com.ibm.etcd.api.StatusResponse result = new com.ibm.etcd.api.StatusResponse(this); int from_bitField0_ = bitField0_; if (headerBuilder_ == null) { result.header_ = header_; } else { result.header_ = headerBuilder_.build(); } result.version_ = version_; result.dbSize_ = dbSize_; result.leader_ = leader_; result.raftIndex_ = raftIndex_; result.raftTerm_ = raftTerm_; result.raftAppliedIndex_ = raftAppliedIndex_; if (((bitField0_ & 0x00000001) != 0)) { errors_ = errors_.getUnmodifiableView(); bitField0_ = (bitField0_ & ~0x00000001); } result.errors_ = errors_; result.dbSizeInUse_ = dbSizeInUse_; 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 com.ibm.etcd.api.StatusResponse) { return mergeFrom((com.ibm.etcd.api.StatusResponse)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.ibm.etcd.api.StatusResponse other) { if (other == com.ibm.etcd.api.StatusResponse.getDefaultInstance()) return this; if (other.hasHeader()) { mergeHeader(other.getHeader()); } if (!other.getVersion().isEmpty()) { version_ = other.version_; onChanged(); } if (other.getDbSize() != 0L) { setDbSize(other.getDbSize()); } if (other.getLeader() != 0L) { setLeader(other.getLeader()); } if (other.getRaftIndex() != 0L) { setRaftIndex(other.getRaftIndex()); } if (other.getRaftTerm() != 0L) { setRaftTerm(other.getRaftTerm()); } if (other.getRaftAppliedIndex() != 0L) { setRaftAppliedIndex(other.getRaftAppliedIndex()); } if (!other.errors_.isEmpty()) { if (errors_.isEmpty()) { errors_ = other.errors_; bitField0_ = (bitField0_ & ~0x00000001); } else { ensureErrorsIsMutable(); errors_.addAll(other.errors_); } onChanged(); } if (other.getDbSizeInUse() != 0L) { setDbSizeInUse(other.getDbSizeInUse()); } 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 { com.ibm.etcd.api.StatusResponse parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.ibm.etcd.api.StatusResponse) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private com.ibm.etcd.api.ResponseHeader header_; private com.google.protobuf.SingleFieldBuilderV3< com.ibm.etcd.api.ResponseHeader, com.ibm.etcd.api.ResponseHeader.Builder, com.ibm.etcd.api.ResponseHeaderOrBuilder> headerBuilder_; /** * .etcdserverpb.ResponseHeader header = 1; * @return Whether the header field is set. */ public boolean hasHeader() { return headerBuilder_ != null || header_ != null; } /** * .etcdserverpb.ResponseHeader header = 1; * @return The header. */ public com.ibm.etcd.api.ResponseHeader getHeader() { if (headerBuilder_ == null) { return header_ == null ? com.ibm.etcd.api.ResponseHeader.getDefaultInstance() : header_; } else { return headerBuilder_.getMessage(); } } /** * .etcdserverpb.ResponseHeader header = 1; */ public Builder setHeader(com.ibm.etcd.api.ResponseHeader value) { if (headerBuilder_ == null) { if (value == null) { throw new NullPointerException(); } header_ = value; onChanged(); } else { headerBuilder_.setMessage(value); } return this; } /** * .etcdserverpb.ResponseHeader header = 1; */ public Builder setHeader( com.ibm.etcd.api.ResponseHeader.Builder builderForValue) { if (headerBuilder_ == null) { header_ = builderForValue.build(); onChanged(); } else { headerBuilder_.setMessage(builderForValue.build()); } return this; } /** * .etcdserverpb.ResponseHeader header = 1; */ public Builder mergeHeader(com.ibm.etcd.api.ResponseHeader value) { if (headerBuilder_ == null) { if (header_ != null) { header_ = com.ibm.etcd.api.ResponseHeader.newBuilder(header_).mergeFrom(value).buildPartial(); } else { header_ = value; } onChanged(); } else { headerBuilder_.mergeFrom(value); } return this; } /** * .etcdserverpb.ResponseHeader header = 1; */ public Builder clearHeader() { if (headerBuilder_ == null) { header_ = null; onChanged(); } else { header_ = null; headerBuilder_ = null; } return this; } /** * .etcdserverpb.ResponseHeader header = 1; */ public com.ibm.etcd.api.ResponseHeader.Builder getHeaderBuilder() { onChanged(); return getHeaderFieldBuilder().getBuilder(); } /** * .etcdserverpb.ResponseHeader header = 1; */ public com.ibm.etcd.api.ResponseHeaderOrBuilder getHeaderOrBuilder() { if (headerBuilder_ != null) { return headerBuilder_.getMessageOrBuilder(); } else { return header_ == null ? com.ibm.etcd.api.ResponseHeader.getDefaultInstance() : header_; } } /** * .etcdserverpb.ResponseHeader header = 1; */ private com.google.protobuf.SingleFieldBuilderV3< com.ibm.etcd.api.ResponseHeader, com.ibm.etcd.api.ResponseHeader.Builder, com.ibm.etcd.api.ResponseHeaderOrBuilder> getHeaderFieldBuilder() { if (headerBuilder_ == null) { headerBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.ibm.etcd.api.ResponseHeader, com.ibm.etcd.api.ResponseHeader.Builder, com.ibm.etcd.api.ResponseHeaderOrBuilder>( getHeader(), getParentForChildren(), isClean()); header_ = null; } return headerBuilder_; } private java.lang.Object version_ = ""; /** *
     * version is the cluster protocol version used by the responding member.
     * 
* * string version = 2; * @return The version. */ public java.lang.String getVersion() { java.lang.Object ref = version_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); version_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * version is the cluster protocol version used by the responding member.
     * 
* * string version = 2; * @return The bytes for version. */ public com.google.protobuf.ByteString getVersionBytes() { java.lang.Object ref = version_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); version_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * version is the cluster protocol version used by the responding member.
     * 
* * string version = 2; * @param value The version to set. * @return This builder for chaining. */ public Builder setVersion( java.lang.String value) { if (value == null) { throw new NullPointerException(); } version_ = value; onChanged(); return this; } /** *
     * version is the cluster protocol version used by the responding member.
     * 
* * string version = 2; * @return This builder for chaining. */ public Builder clearVersion() { version_ = getDefaultInstance().getVersion(); onChanged(); return this; } /** *
     * version is the cluster protocol version used by the responding member.
     * 
* * string version = 2; * @param value The bytes for version to set. * @return This builder for chaining. */ public Builder setVersionBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); version_ = value; onChanged(); return this; } private long dbSize_ ; /** *
     * dbSize is the size of the backend database physically allocated, in bytes, of the responding member.
     * 
* * int64 dbSize = 3; * @return The dbSize. */ @java.lang.Override public long getDbSize() { return dbSize_; } /** *
     * dbSize is the size of the backend database physically allocated, in bytes, of the responding member.
     * 
* * int64 dbSize = 3; * @param value The dbSize to set. * @return This builder for chaining. */ public Builder setDbSize(long value) { dbSize_ = value; onChanged(); return this; } /** *
     * dbSize is the size of the backend database physically allocated, in bytes, of the responding member.
     * 
* * int64 dbSize = 3; * @return This builder for chaining. */ public Builder clearDbSize() { dbSize_ = 0L; onChanged(); return this; } private long leader_ ; /** *
     * leader is the member ID which the responding member believes is the current leader.
     * 
* * uint64 leader = 4; * @return The leader. */ @java.lang.Override public long getLeader() { return leader_; } /** *
     * leader is the member ID which the responding member believes is the current leader.
     * 
* * uint64 leader = 4; * @param value The leader to set. * @return This builder for chaining. */ public Builder setLeader(long value) { leader_ = value; onChanged(); return this; } /** *
     * leader is the member ID which the responding member believes is the current leader.
     * 
* * uint64 leader = 4; * @return This builder for chaining. */ public Builder clearLeader() { leader_ = 0L; onChanged(); return this; } private long raftIndex_ ; /** *
     * raftIndex is the current raft committed index of the responding member.
     * 
* * uint64 raftIndex = 5; * @return The raftIndex. */ @java.lang.Override public long getRaftIndex() { return raftIndex_; } /** *
     * raftIndex is the current raft committed index of the responding member.
     * 
* * uint64 raftIndex = 5; * @param value The raftIndex to set. * @return This builder for chaining. */ public Builder setRaftIndex(long value) { raftIndex_ = value; onChanged(); return this; } /** *
     * raftIndex is the current raft committed index of the responding member.
     * 
* * uint64 raftIndex = 5; * @return This builder for chaining. */ public Builder clearRaftIndex() { raftIndex_ = 0L; onChanged(); return this; } private long raftTerm_ ; /** *
     * raftTerm is the current raft term of the responding member.
     * 
* * uint64 raftTerm = 6; * @return The raftTerm. */ @java.lang.Override public long getRaftTerm() { return raftTerm_; } /** *
     * raftTerm is the current raft term of the responding member.
     * 
* * uint64 raftTerm = 6; * @param value The raftTerm to set. * @return This builder for chaining. */ public Builder setRaftTerm(long value) { raftTerm_ = value; onChanged(); return this; } /** *
     * raftTerm is the current raft term of the responding member.
     * 
* * uint64 raftTerm = 6; * @return This builder for chaining. */ public Builder clearRaftTerm() { raftTerm_ = 0L; onChanged(); return this; } private long raftAppliedIndex_ ; /** *
     * raftAppliedIndex is the current raft applied index of the responding member.
     * 
* * uint64 raftAppliedIndex = 7; * @return The raftAppliedIndex. */ @java.lang.Override public long getRaftAppliedIndex() { return raftAppliedIndex_; } /** *
     * raftAppliedIndex is the current raft applied index of the responding member.
     * 
* * uint64 raftAppliedIndex = 7; * @param value The raftAppliedIndex to set. * @return This builder for chaining. */ public Builder setRaftAppliedIndex(long value) { raftAppliedIndex_ = value; onChanged(); return this; } /** *
     * raftAppliedIndex is the current raft applied index of the responding member.
     * 
* * uint64 raftAppliedIndex = 7; * @return This builder for chaining. */ public Builder clearRaftAppliedIndex() { raftAppliedIndex_ = 0L; onChanged(); return this; } private com.google.protobuf.LazyStringList errors_ = com.google.protobuf.LazyStringArrayList.EMPTY; private void ensureErrorsIsMutable() { if (!((bitField0_ & 0x00000001) != 0)) { errors_ = new com.google.protobuf.LazyStringArrayList(errors_); bitField0_ |= 0x00000001; } } /** *
     * errors contains alarm/health information and status.
     * 
* * repeated string errors = 8; * @return A list containing the errors. */ public com.google.protobuf.ProtocolStringList getErrorsList() { return errors_.getUnmodifiableView(); } /** *
     * errors contains alarm/health information and status.
     * 
* * repeated string errors = 8; * @return The count of errors. */ public int getErrorsCount() { return errors_.size(); } /** *
     * errors contains alarm/health information and status.
     * 
* * repeated string errors = 8; * @param index The index of the element to return. * @return The errors at the given index. */ public java.lang.String getErrors(int index) { return errors_.get(index); } /** *
     * errors contains alarm/health information and status.
     * 
* * repeated string errors = 8; * @param index The index of the value to return. * @return The bytes of the errors at the given index. */ public com.google.protobuf.ByteString getErrorsBytes(int index) { return errors_.getByteString(index); } /** *
     * errors contains alarm/health information and status.
     * 
* * repeated string errors = 8; * @param index The index to set the value at. * @param value The errors to set. * @return This builder for chaining. */ public Builder setErrors( int index, java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureErrorsIsMutable(); errors_.set(index, value); onChanged(); return this; } /** *
     * errors contains alarm/health information and status.
     * 
* * repeated string errors = 8; * @param value The errors to add. * @return This builder for chaining. */ public Builder addErrors( java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureErrorsIsMutable(); errors_.add(value); onChanged(); return this; } /** *
     * errors contains alarm/health information and status.
     * 
* * repeated string errors = 8; * @param values The errors to add. * @return This builder for chaining. */ public Builder addAllErrors( java.lang.Iterable values) { ensureErrorsIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, errors_); onChanged(); return this; } /** *
     * errors contains alarm/health information and status.
     * 
* * repeated string errors = 8; * @return This builder for chaining. */ public Builder clearErrors() { errors_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** *
     * errors contains alarm/health information and status.
     * 
* * repeated string errors = 8; * @param value The bytes of the errors to add. * @return This builder for chaining. */ public Builder addErrorsBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); ensureErrorsIsMutable(); errors_.add(value); onChanged(); return this; } private long dbSizeInUse_ ; /** *
     * dbSizeInUse is the size of the backend database logically in use, in bytes, of the responding member.
     * 
* * int64 dbSizeInUse = 9; * @return The dbSizeInUse. */ @java.lang.Override public long getDbSizeInUse() { return dbSizeInUse_; } /** *
     * dbSizeInUse is the size of the backend database logically in use, in bytes, of the responding member.
     * 
* * int64 dbSizeInUse = 9; * @param value The dbSizeInUse to set. * @return This builder for chaining. */ public Builder setDbSizeInUse(long value) { dbSizeInUse_ = value; onChanged(); return this; } /** *
     * dbSizeInUse is the size of the backend database logically in use, in bytes, of the responding member.
     * 
* * int64 dbSizeInUse = 9; * @return This builder for chaining. */ public Builder clearDbSizeInUse() { dbSizeInUse_ = 0L; 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:etcdserverpb.StatusResponse) } // @@protoc_insertion_point(class_scope:etcdserverpb.StatusResponse) private static final com.ibm.etcd.api.StatusResponse DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.ibm.etcd.api.StatusResponse(); } public static com.ibm.etcd.api.StatusResponse getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public StatusResponse parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new StatusResponse(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 com.ibm.etcd.api.StatusResponse getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy