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

org.hyperledger.fabric.protos.peer.GetStateByRange Maven / Gradle / Ivy

// Generated by the protocol buffer compiler.  DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: peer/chaincode_shim.proto
// Protobuf Java Version: 4.28.2

package org.hyperledger.fabric.protos.peer;

/**
 * 
 * GetStateByRange is the payload of a ChaincodeMessage. It contains a start key and
 * a end key required to execute range query. If the collection is specified,
 * the range query needs to be executed on the private data. The metadata hold
 * the byte representation of QueryMetadata.
 * 
* * Protobuf type {@code protos.GetStateByRange} */ public final class GetStateByRange extends com.google.protobuf.GeneratedMessage implements // @@protoc_insertion_point(message_implements:protos.GetStateByRange) GetStateByRangeOrBuilder { private static final long serialVersionUID = 0L; static { com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, /* minor= */ 28, /* patch= */ 2, /* suffix= */ "", GetStateByRange.class.getName()); } // Use GetStateByRange.newBuilder() to construct. private GetStateByRange(com.google.protobuf.GeneratedMessage.Builder builder) { super(builder); } private GetStateByRange() { startKey_ = ""; endKey_ = ""; collection_ = ""; metadata_ = com.google.protobuf.ByteString.EMPTY; } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.hyperledger.fabric.protos.peer.ChaincodeShimProto.internal_static_protos_GetStateByRange_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return org.hyperledger.fabric.protos.peer.ChaincodeShimProto.internal_static_protos_GetStateByRange_fieldAccessorTable .ensureFieldAccessorsInitialized( org.hyperledger.fabric.protos.peer.GetStateByRange.class, org.hyperledger.fabric.protos.peer.GetStateByRange.Builder.class); } public static final int STARTKEY_FIELD_NUMBER = 1; @SuppressWarnings("serial") private volatile java.lang.Object startKey_ = ""; /** * string startKey = 1 [json_name = "startKey"]; * @return The startKey. */ @java.lang.Override public java.lang.String getStartKey() { java.lang.Object ref = startKey_; 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(); startKey_ = s; return s; } } /** * string startKey = 1 [json_name = "startKey"]; * @return The bytes for startKey. */ @java.lang.Override public com.google.protobuf.ByteString getStartKeyBytes() { java.lang.Object ref = startKey_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); startKey_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int ENDKEY_FIELD_NUMBER = 2; @SuppressWarnings("serial") private volatile java.lang.Object endKey_ = ""; /** * string endKey = 2 [json_name = "endKey"]; * @return The endKey. */ @java.lang.Override public java.lang.String getEndKey() { java.lang.Object ref = endKey_; 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(); endKey_ = s; return s; } } /** * string endKey = 2 [json_name = "endKey"]; * @return The bytes for endKey. */ @java.lang.Override public com.google.protobuf.ByteString getEndKeyBytes() { java.lang.Object ref = endKey_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); endKey_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int COLLECTION_FIELD_NUMBER = 3; @SuppressWarnings("serial") private volatile java.lang.Object collection_ = ""; /** * string collection = 3 [json_name = "collection"]; * @return The collection. */ @java.lang.Override public java.lang.String getCollection() { java.lang.Object ref = collection_; 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(); collection_ = s; return s; } } /** * string collection = 3 [json_name = "collection"]; * @return The bytes for collection. */ @java.lang.Override public com.google.protobuf.ByteString getCollectionBytes() { java.lang.Object ref = collection_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); collection_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int METADATA_FIELD_NUMBER = 4; private com.google.protobuf.ByteString metadata_ = com.google.protobuf.ByteString.EMPTY; /** * bytes metadata = 4 [json_name = "metadata"]; * @return The metadata. */ @java.lang.Override public com.google.protobuf.ByteString getMetadata() { return metadata_; } 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.GeneratedMessage.isStringEmpty(startKey_)) { com.google.protobuf.GeneratedMessage.writeString(output, 1, startKey_); } if (!com.google.protobuf.GeneratedMessage.isStringEmpty(endKey_)) { com.google.protobuf.GeneratedMessage.writeString(output, 2, endKey_); } if (!com.google.protobuf.GeneratedMessage.isStringEmpty(collection_)) { com.google.protobuf.GeneratedMessage.writeString(output, 3, collection_); } if (!metadata_.isEmpty()) { output.writeBytes(4, metadata_); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!com.google.protobuf.GeneratedMessage.isStringEmpty(startKey_)) { size += com.google.protobuf.GeneratedMessage.computeStringSize(1, startKey_); } if (!com.google.protobuf.GeneratedMessage.isStringEmpty(endKey_)) { size += com.google.protobuf.GeneratedMessage.computeStringSize(2, endKey_); } if (!com.google.protobuf.GeneratedMessage.isStringEmpty(collection_)) { size += com.google.protobuf.GeneratedMessage.computeStringSize(3, collection_); } if (!metadata_.isEmpty()) { size += com.google.protobuf.CodedOutputStream .computeBytesSize(4, metadata_); } 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 org.hyperledger.fabric.protos.peer.GetStateByRange)) { return super.equals(obj); } org.hyperledger.fabric.protos.peer.GetStateByRange other = (org.hyperledger.fabric.protos.peer.GetStateByRange) obj; if (!getStartKey() .equals(other.getStartKey())) return false; if (!getEndKey() .equals(other.getEndKey())) return false; if (!getCollection() .equals(other.getCollection())) return false; if (!getMetadata() .equals(other.getMetadata())) 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) + STARTKEY_FIELD_NUMBER; hash = (53 * hash) + getStartKey().hashCode(); hash = (37 * hash) + ENDKEY_FIELD_NUMBER; hash = (53 * hash) + getEndKey().hashCode(); hash = (37 * hash) + COLLECTION_FIELD_NUMBER; hash = (53 * hash) + getCollection().hashCode(); hash = (37 * hash) + METADATA_FIELD_NUMBER; hash = (53 * hash) + getMetadata().hashCode(); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static org.hyperledger.fabric.protos.peer.GetStateByRange parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.hyperledger.fabric.protos.peer.GetStateByRange parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.hyperledger.fabric.protos.peer.GetStateByRange parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.hyperledger.fabric.protos.peer.GetStateByRange parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.hyperledger.fabric.protos.peer.GetStateByRange parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.hyperledger.fabric.protos.peer.GetStateByRange parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.hyperledger.fabric.protos.peer.GetStateByRange parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseWithIOException(PARSER, input); } public static org.hyperledger.fabric.protos.peer.GetStateByRange parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseWithIOException(PARSER, input, extensionRegistry); } public static org.hyperledger.fabric.protos.peer.GetStateByRange parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseDelimitedWithIOException(PARSER, input); } public static org.hyperledger.fabric.protos.peer.GetStateByRange parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static org.hyperledger.fabric.protos.peer.GetStateByRange parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseWithIOException(PARSER, input); } public static org.hyperledger.fabric.protos.peer.GetStateByRange parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(org.hyperledger.fabric.protos.peer.GetStateByRange 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.GeneratedMessage.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** *
   * GetStateByRange is the payload of a ChaincodeMessage. It contains a start key and
   * a end key required to execute range query. If the collection is specified,
   * the range query needs to be executed on the private data. The metadata hold
   * the byte representation of QueryMetadata.
   * 
* * Protobuf type {@code protos.GetStateByRange} */ public static final class Builder extends com.google.protobuf.GeneratedMessage.Builder implements // @@protoc_insertion_point(builder_implements:protos.GetStateByRange) org.hyperledger.fabric.protos.peer.GetStateByRangeOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.hyperledger.fabric.protos.peer.ChaincodeShimProto.internal_static_protos_GetStateByRange_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return org.hyperledger.fabric.protos.peer.ChaincodeShimProto.internal_static_protos_GetStateByRange_fieldAccessorTable .ensureFieldAccessorsInitialized( org.hyperledger.fabric.protos.peer.GetStateByRange.class, org.hyperledger.fabric.protos.peer.GetStateByRange.Builder.class); } // Construct using org.hyperledger.fabric.protos.peer.GetStateByRange.newBuilder() private Builder() { } private Builder( com.google.protobuf.GeneratedMessage.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; startKey_ = ""; endKey_ = ""; collection_ = ""; metadata_ = com.google.protobuf.ByteString.EMPTY; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return org.hyperledger.fabric.protos.peer.ChaincodeShimProto.internal_static_protos_GetStateByRange_descriptor; } @java.lang.Override public org.hyperledger.fabric.protos.peer.GetStateByRange getDefaultInstanceForType() { return org.hyperledger.fabric.protos.peer.GetStateByRange.getDefaultInstance(); } @java.lang.Override public org.hyperledger.fabric.protos.peer.GetStateByRange build() { org.hyperledger.fabric.protos.peer.GetStateByRange result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public org.hyperledger.fabric.protos.peer.GetStateByRange buildPartial() { org.hyperledger.fabric.protos.peer.GetStateByRange result = new org.hyperledger.fabric.protos.peer.GetStateByRange(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(org.hyperledger.fabric.protos.peer.GetStateByRange result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.startKey_ = startKey_; } if (((from_bitField0_ & 0x00000002) != 0)) { result.endKey_ = endKey_; } if (((from_bitField0_ & 0x00000004) != 0)) { result.collection_ = collection_; } if (((from_bitField0_ & 0x00000008) != 0)) { result.metadata_ = metadata_; } } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof org.hyperledger.fabric.protos.peer.GetStateByRange) { return mergeFrom((org.hyperledger.fabric.protos.peer.GetStateByRange)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(org.hyperledger.fabric.protos.peer.GetStateByRange other) { if (other == org.hyperledger.fabric.protos.peer.GetStateByRange.getDefaultInstance()) return this; if (!other.getStartKey().isEmpty()) { startKey_ = other.startKey_; bitField0_ |= 0x00000001; onChanged(); } if (!other.getEndKey().isEmpty()) { endKey_ = other.endKey_; bitField0_ |= 0x00000002; onChanged(); } if (!other.getCollection().isEmpty()) { collection_ = other.collection_; bitField0_ |= 0x00000004; onChanged(); } if (other.getMetadata() != com.google.protobuf.ByteString.EMPTY) { setMetadata(other.getMetadata()); } 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: { startKey_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000001; break; } // case 10 case 18: { endKey_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000002; break; } // case 18 case 26: { collection_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000004; break; } // case 26 case 34: { metadata_ = input.readBytes(); bitField0_ |= 0x00000008; break; } // case 34 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 startKey_ = ""; /** * string startKey = 1 [json_name = "startKey"]; * @return The startKey. */ public java.lang.String getStartKey() { java.lang.Object ref = startKey_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); startKey_ = s; return s; } else { return (java.lang.String) ref; } } /** * string startKey = 1 [json_name = "startKey"]; * @return The bytes for startKey. */ public com.google.protobuf.ByteString getStartKeyBytes() { java.lang.Object ref = startKey_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); startKey_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * string startKey = 1 [json_name = "startKey"]; * @param value The startKey to set. * @return This builder for chaining. */ public Builder setStartKey( java.lang.String value) { if (value == null) { throw new NullPointerException(); } startKey_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** * string startKey = 1 [json_name = "startKey"]; * @return This builder for chaining. */ public Builder clearStartKey() { startKey_ = getDefaultInstance().getStartKey(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** * string startKey = 1 [json_name = "startKey"]; * @param value The bytes for startKey to set. * @return This builder for chaining. */ public Builder setStartKeyBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); startKey_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } private java.lang.Object endKey_ = ""; /** * string endKey = 2 [json_name = "endKey"]; * @return The endKey. */ public java.lang.String getEndKey() { java.lang.Object ref = endKey_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); endKey_ = s; return s; } else { return (java.lang.String) ref; } } /** * string endKey = 2 [json_name = "endKey"]; * @return The bytes for endKey. */ public com.google.protobuf.ByteString getEndKeyBytes() { java.lang.Object ref = endKey_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); endKey_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * string endKey = 2 [json_name = "endKey"]; * @param value The endKey to set. * @return This builder for chaining. */ public Builder setEndKey( java.lang.String value) { if (value == null) { throw new NullPointerException(); } endKey_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** * string endKey = 2 [json_name = "endKey"]; * @return This builder for chaining. */ public Builder clearEndKey() { endKey_ = getDefaultInstance().getEndKey(); bitField0_ = (bitField0_ & ~0x00000002); onChanged(); return this; } /** * string endKey = 2 [json_name = "endKey"]; * @param value The bytes for endKey to set. * @return This builder for chaining. */ public Builder setEndKeyBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); endKey_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } private java.lang.Object collection_ = ""; /** * string collection = 3 [json_name = "collection"]; * @return The collection. */ public java.lang.String getCollection() { java.lang.Object ref = collection_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); collection_ = s; return s; } else { return (java.lang.String) ref; } } /** * string collection = 3 [json_name = "collection"]; * @return The bytes for collection. */ public com.google.protobuf.ByteString getCollectionBytes() { java.lang.Object ref = collection_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); collection_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * string collection = 3 [json_name = "collection"]; * @param value The collection to set. * @return This builder for chaining. */ public Builder setCollection( java.lang.String value) { if (value == null) { throw new NullPointerException(); } collection_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } /** * string collection = 3 [json_name = "collection"]; * @return This builder for chaining. */ public Builder clearCollection() { collection_ = getDefaultInstance().getCollection(); bitField0_ = (bitField0_ & ~0x00000004); onChanged(); return this; } /** * string collection = 3 [json_name = "collection"]; * @param value The bytes for collection to set. * @return This builder for chaining. */ public Builder setCollectionBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); collection_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } private com.google.protobuf.ByteString metadata_ = com.google.protobuf.ByteString.EMPTY; /** * bytes metadata = 4 [json_name = "metadata"]; * @return The metadata. */ @java.lang.Override public com.google.protobuf.ByteString getMetadata() { return metadata_; } /** * bytes metadata = 4 [json_name = "metadata"]; * @param value The metadata to set. * @return This builder for chaining. */ public Builder setMetadata(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } metadata_ = value; bitField0_ |= 0x00000008; onChanged(); return this; } /** * bytes metadata = 4 [json_name = "metadata"]; * @return This builder for chaining. */ public Builder clearMetadata() { bitField0_ = (bitField0_ & ~0x00000008); metadata_ = getDefaultInstance().getMetadata(); onChanged(); return this; } // @@protoc_insertion_point(builder_scope:protos.GetStateByRange) } // @@protoc_insertion_point(class_scope:protos.GetStateByRange) private static final org.hyperledger.fabric.protos.peer.GetStateByRange DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new org.hyperledger.fabric.protos.peer.GetStateByRange(); } public static org.hyperledger.fabric.protos.peer.GetStateByRange getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public GetStateByRange parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { Builder builder = newBuilder(); try { builder.mergeFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(builder.buildPartial()); } catch (com.google.protobuf.UninitializedMessageException e) { throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException(e) .setUnfinishedMessage(builder.buildPartial()); } return builder.buildPartial(); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public org.hyperledger.fabric.protos.peer.GetStateByRange getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy