com.hedera.hapi.block.protoc.StateSnapshotResponse Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: block_service.proto
package com.hedera.hapi.block.protoc;
/**
*
**
* A response to a request for a state snapshot.
* This message SHALL deliver a _reference_ to the requested snapshot
* data if successful.<br/>
* This message SHALL deliver a code indicating the reason for failure
* if unsuccessful.
*
*
* Protobuf type {@code com.hedera.hapi.block.StateSnapshotResponse}
*/
public final class StateSnapshotResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:com.hedera.hapi.block.StateSnapshotResponse)
StateSnapshotResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use StateSnapshotResponse.newBuilder() to construct.
private StateSnapshotResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private StateSnapshotResponse() {
status_ = 0;
snapshotReference_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new StateSnapshotResponse();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private StateSnapshotResponse(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 8: {
int rawValue = input.readEnum();
status_ = rawValue;
break;
}
case 16: {
lastBlockNumber_ = input.readUInt64();
break;
}
case 26: {
java.lang.String s = input.readStringRequireUtf8();
snapshotReference_ = s;
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hedera.hapi.block.protoc.BlockService.internal_static_com_hedera_hapi_block_StateSnapshotResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hedera.hapi.block.protoc.BlockService.internal_static_com_hedera_hapi_block_StateSnapshotResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hedera.hapi.block.protoc.StateSnapshotResponse.class, com.hedera.hapi.block.protoc.StateSnapshotResponse.Builder.class);
}
public static final int STATUS_FIELD_NUMBER = 1;
private int status_;
/**
*
**
* A status response.
* <p>
* This code SHALL indicate a successful call, or the detailed
* reason for failure.
*
*
* .com.hedera.hapi.block.StateSnapshotResponseCode status = 1;
* @return The enum numeric value on the wire for status.
*/
@java.lang.Override public int getStatusValue() {
return status_;
}
/**
*
**
* A status response.
* <p>
* This code SHALL indicate a successful call, or the detailed
* reason for failure.
*
*
* .com.hedera.hapi.block.StateSnapshotResponseCode status = 1;
* @return The status.
*/
@java.lang.Override public com.hedera.hapi.block.protoc.StateSnapshotResponseCode getStatus() {
@SuppressWarnings("deprecation")
com.hedera.hapi.block.protoc.StateSnapshotResponseCode result = com.hedera.hapi.block.protoc.StateSnapshotResponseCode.valueOf(status_);
return result == null ? com.hedera.hapi.block.protoc.StateSnapshotResponseCode.UNRECOGNIZED : result;
}
public static final int LAST_BLOCK_NUMBER_FIELD_NUMBER = 2;
private long lastBlockNumber_;
/**
*
**
* A block number.
* <p>
* This SHALL be the number of the last block included in this
* state snapshot.
*
*
* uint64 last_block_number = 2;
* @return The lastBlockNumber.
*/
@java.lang.Override
public long getLastBlockNumber() {
return lastBlockNumber_;
}
public static final int SNAPSHOT_REFERENCE_FIELD_NUMBER = 3;
private volatile java.lang.Object snapshotReference_;
/**
*
**
* A reference to where the requested state snapshot may be obtained.
* <p>
* <blockquote>REVIEW NOTE<blockquote>
* This is TEMPORARY. We have not yet designed how state snapshots may
* be sent. One idea is to use `Any` and let implementations decide;
* another is to use a time limited URL (with the same login as the block
* node server); another is to use a customer-pays cloud storage bucket.
* </blockquote></blockquote>
*
*
* string snapshot_reference = 3;
* @return The snapshotReference.
*/
@java.lang.Override
public java.lang.String getSnapshotReference() {
java.lang.Object ref = snapshotReference_;
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();
snapshotReference_ = s;
return s;
}
}
/**
*
**
* A reference to where the requested state snapshot may be obtained.
* <p>
* <blockquote>REVIEW NOTE<blockquote>
* This is TEMPORARY. We have not yet designed how state snapshots may
* be sent. One idea is to use `Any` and let implementations decide;
* another is to use a time limited URL (with the same login as the block
* node server); another is to use a customer-pays cloud storage bucket.
* </blockquote></blockquote>
*
*
* string snapshot_reference = 3;
* @return The bytes for snapshotReference.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getSnapshotReferenceBytes() {
java.lang.Object ref = snapshotReference_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
snapshotReference_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
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 (status_ != com.hedera.hapi.block.protoc.StateSnapshotResponseCode.STATE_SNAPSHOT_UNKNOWN.getNumber()) {
output.writeEnum(1, status_);
}
if (lastBlockNumber_ != 0L) {
output.writeUInt64(2, lastBlockNumber_);
}
if (!getSnapshotReferenceBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, snapshotReference_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (status_ != com.hedera.hapi.block.protoc.StateSnapshotResponseCode.STATE_SNAPSHOT_UNKNOWN.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(1, status_);
}
if (lastBlockNumber_ != 0L) {
size += com.google.protobuf.CodedOutputStream
.computeUInt64Size(2, lastBlockNumber_);
}
if (!getSnapshotReferenceBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, snapshotReference_);
}
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.hedera.hapi.block.protoc.StateSnapshotResponse)) {
return super.equals(obj);
}
com.hedera.hapi.block.protoc.StateSnapshotResponse other = (com.hedera.hapi.block.protoc.StateSnapshotResponse) obj;
if (status_ != other.status_) return false;
if (getLastBlockNumber()
!= other.getLastBlockNumber()) return false;
if (!getSnapshotReference()
.equals(other.getSnapshotReference())) return false;
if (!unknownFields.equals(other.unknownFields)) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + STATUS_FIELD_NUMBER;
hash = (53 * hash) + status_;
hash = (37 * hash) + LAST_BLOCK_NUMBER_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getLastBlockNumber());
hash = (37 * hash) + SNAPSHOT_REFERENCE_FIELD_NUMBER;
hash = (53 * hash) + getSnapshotReference().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.hedera.hapi.block.protoc.StateSnapshotResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.hapi.block.protoc.StateSnapshotResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hedera.hapi.block.protoc.StateSnapshotResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.hapi.block.protoc.StateSnapshotResponse parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hedera.hapi.block.protoc.StateSnapshotResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.hapi.block.protoc.StateSnapshotResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hedera.hapi.block.protoc.StateSnapshotResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hedera.hapi.block.protoc.StateSnapshotResponse 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.hedera.hapi.block.protoc.StateSnapshotResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.hedera.hapi.block.protoc.StateSnapshotResponse 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.hedera.hapi.block.protoc.StateSnapshotResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hedera.hapi.block.protoc.StateSnapshotResponse 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.hedera.hapi.block.protoc.StateSnapshotResponse prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
**
* A response to a request for a state snapshot.
* This message SHALL deliver a _reference_ to the requested snapshot
* data if successful.<br/>
* This message SHALL deliver a code indicating the reason for failure
* if unsuccessful.
*
*
* Protobuf type {@code com.hedera.hapi.block.StateSnapshotResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:com.hedera.hapi.block.StateSnapshotResponse)
com.hedera.hapi.block.protoc.StateSnapshotResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hedera.hapi.block.protoc.BlockService.internal_static_com_hedera_hapi_block_StateSnapshotResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hedera.hapi.block.protoc.BlockService.internal_static_com_hedera_hapi_block_StateSnapshotResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hedera.hapi.block.protoc.StateSnapshotResponse.class, com.hedera.hapi.block.protoc.StateSnapshotResponse.Builder.class);
}
// Construct using com.hedera.hapi.block.protoc.StateSnapshotResponse.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();
status_ = 0;
lastBlockNumber_ = 0L;
snapshotReference_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.hedera.hapi.block.protoc.BlockService.internal_static_com_hedera_hapi_block_StateSnapshotResponse_descriptor;
}
@java.lang.Override
public com.hedera.hapi.block.protoc.StateSnapshotResponse getDefaultInstanceForType() {
return com.hedera.hapi.block.protoc.StateSnapshotResponse.getDefaultInstance();
}
@java.lang.Override
public com.hedera.hapi.block.protoc.StateSnapshotResponse build() {
com.hedera.hapi.block.protoc.StateSnapshotResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.hedera.hapi.block.protoc.StateSnapshotResponse buildPartial() {
com.hedera.hapi.block.protoc.StateSnapshotResponse result = new com.hedera.hapi.block.protoc.StateSnapshotResponse(this);
result.status_ = status_;
result.lastBlockNumber_ = lastBlockNumber_;
result.snapshotReference_ = snapshotReference_;
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.hedera.hapi.block.protoc.StateSnapshotResponse) {
return mergeFrom((com.hedera.hapi.block.protoc.StateSnapshotResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.hedera.hapi.block.protoc.StateSnapshotResponse other) {
if (other == com.hedera.hapi.block.protoc.StateSnapshotResponse.getDefaultInstance()) return this;
if (other.status_ != 0) {
setStatusValue(other.getStatusValue());
}
if (other.getLastBlockNumber() != 0L) {
setLastBlockNumber(other.getLastBlockNumber());
}
if (!other.getSnapshotReference().isEmpty()) {
snapshotReference_ = other.snapshotReference_;
onChanged();
}
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.hedera.hapi.block.protoc.StateSnapshotResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.hedera.hapi.block.protoc.StateSnapshotResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int status_ = 0;
/**
*
**
* A status response.
* <p>
* This code SHALL indicate a successful call, or the detailed
* reason for failure.
*
*
* .com.hedera.hapi.block.StateSnapshotResponseCode status = 1;
* @return The enum numeric value on the wire for status.
*/
@java.lang.Override public int getStatusValue() {
return status_;
}
/**
*
**
* A status response.
* <p>
* This code SHALL indicate a successful call, or the detailed
* reason for failure.
*
*
* .com.hedera.hapi.block.StateSnapshotResponseCode status = 1;
* @param value The enum numeric value on the wire for status to set.
* @return This builder for chaining.
*/
public Builder setStatusValue(int value) {
status_ = value;
onChanged();
return this;
}
/**
*
**
* A status response.
* <p>
* This code SHALL indicate a successful call, or the detailed
* reason for failure.
*
*
* .com.hedera.hapi.block.StateSnapshotResponseCode status = 1;
* @return The status.
*/
@java.lang.Override
public com.hedera.hapi.block.protoc.StateSnapshotResponseCode getStatus() {
@SuppressWarnings("deprecation")
com.hedera.hapi.block.protoc.StateSnapshotResponseCode result = com.hedera.hapi.block.protoc.StateSnapshotResponseCode.valueOf(status_);
return result == null ? com.hedera.hapi.block.protoc.StateSnapshotResponseCode.UNRECOGNIZED : result;
}
/**
*
**
* A status response.
* <p>
* This code SHALL indicate a successful call, or the detailed
* reason for failure.
*
*
* .com.hedera.hapi.block.StateSnapshotResponseCode status = 1;
* @param value The status to set.
* @return This builder for chaining.
*/
public Builder setStatus(com.hedera.hapi.block.protoc.StateSnapshotResponseCode value) {
if (value == null) {
throw new NullPointerException();
}
status_ = value.getNumber();
onChanged();
return this;
}
/**
*
**
* A status response.
* <p>
* This code SHALL indicate a successful call, or the detailed
* reason for failure.
*
*
* .com.hedera.hapi.block.StateSnapshotResponseCode status = 1;
* @return This builder for chaining.
*/
public Builder clearStatus() {
status_ = 0;
onChanged();
return this;
}
private long lastBlockNumber_ ;
/**
*
**
* A block number.
* <p>
* This SHALL be the number of the last block included in this
* state snapshot.
*
*
* uint64 last_block_number = 2;
* @return The lastBlockNumber.
*/
@java.lang.Override
public long getLastBlockNumber() {
return lastBlockNumber_;
}
/**
*
**
* A block number.
* <p>
* This SHALL be the number of the last block included in this
* state snapshot.
*
*
* uint64 last_block_number = 2;
* @param value The lastBlockNumber to set.
* @return This builder for chaining.
*/
public Builder setLastBlockNumber(long value) {
lastBlockNumber_ = value;
onChanged();
return this;
}
/**
*
**
* A block number.
* <p>
* This SHALL be the number of the last block included in this
* state snapshot.
*
*
* uint64 last_block_number = 2;
* @return This builder for chaining.
*/
public Builder clearLastBlockNumber() {
lastBlockNumber_ = 0L;
onChanged();
return this;
}
private java.lang.Object snapshotReference_ = "";
/**
*
**
* A reference to where the requested state snapshot may be obtained.
* <p>
* <blockquote>REVIEW NOTE<blockquote>
* This is TEMPORARY. We have not yet designed how state snapshots may
* be sent. One idea is to use `Any` and let implementations decide;
* another is to use a time limited URL (with the same login as the block
* node server); another is to use a customer-pays cloud storage bucket.
* </blockquote></blockquote>
*
*
* string snapshot_reference = 3;
* @return The snapshotReference.
*/
public java.lang.String getSnapshotReference() {
java.lang.Object ref = snapshotReference_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
snapshotReference_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
**
* A reference to where the requested state snapshot may be obtained.
* <p>
* <blockquote>REVIEW NOTE<blockquote>
* This is TEMPORARY. We have not yet designed how state snapshots may
* be sent. One idea is to use `Any` and let implementations decide;
* another is to use a time limited URL (with the same login as the block
* node server); another is to use a customer-pays cloud storage bucket.
* </blockquote></blockquote>
*
*
* string snapshot_reference = 3;
* @return The bytes for snapshotReference.
*/
public com.google.protobuf.ByteString
getSnapshotReferenceBytes() {
java.lang.Object ref = snapshotReference_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
snapshotReference_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
**
* A reference to where the requested state snapshot may be obtained.
* <p>
* <blockquote>REVIEW NOTE<blockquote>
* This is TEMPORARY. We have not yet designed how state snapshots may
* be sent. One idea is to use `Any` and let implementations decide;
* another is to use a time limited URL (with the same login as the block
* node server); another is to use a customer-pays cloud storage bucket.
* </blockquote></blockquote>
*
*
* string snapshot_reference = 3;
* @param value The snapshotReference to set.
* @return This builder for chaining.
*/
public Builder setSnapshotReference(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
snapshotReference_ = value;
onChanged();
return this;
}
/**
*
**
* A reference to where the requested state snapshot may be obtained.
* <p>
* <blockquote>REVIEW NOTE<blockquote>
* This is TEMPORARY. We have not yet designed how state snapshots may
* be sent. One idea is to use `Any` and let implementations decide;
* another is to use a time limited URL (with the same login as the block
* node server); another is to use a customer-pays cloud storage bucket.
* </blockquote></blockquote>
*
*
* string snapshot_reference = 3;
* @return This builder for chaining.
*/
public Builder clearSnapshotReference() {
snapshotReference_ = getDefaultInstance().getSnapshotReference();
onChanged();
return this;
}
/**
*
**
* A reference to where the requested state snapshot may be obtained.
* <p>
* <blockquote>REVIEW NOTE<blockquote>
* This is TEMPORARY. We have not yet designed how state snapshots may
* be sent. One idea is to use `Any` and let implementations decide;
* another is to use a time limited URL (with the same login as the block
* node server); another is to use a customer-pays cloud storage bucket.
* </blockquote></blockquote>
*
*
* string snapshot_reference = 3;
* @param value The bytes for snapshotReference to set.
* @return This builder for chaining.
*/
public Builder setSnapshotReferenceBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
snapshotReference_ = value;
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:com.hedera.hapi.block.StateSnapshotResponse)
}
// @@protoc_insertion_point(class_scope:com.hedera.hapi.block.StateSnapshotResponse)
private static final com.hedera.hapi.block.protoc.StateSnapshotResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.hedera.hapi.block.protoc.StateSnapshotResponse();
}
public static com.hedera.hapi.block.protoc.StateSnapshotResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public StateSnapshotResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new StateSnapshotResponse(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.hedera.hapi.block.protoc.StateSnapshotResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy