org.hyperledger.fabric.protos.discovery.ChaincodeQuery Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: discovery/protocol.proto
// Protobuf Java Version: 4.28.2
package org.hyperledger.fabric.protos.discovery;
/**
*
* ChaincodeQuery requests ChaincodeQueryResults for a given
* list of chaincode invocations.
* Each invocation is a separate one, and the endorsement policy
* is evaluated independantly for each given interest.
*
*
* Protobuf type {@code discovery.ChaincodeQuery}
*/
public final class ChaincodeQuery extends
com.google.protobuf.GeneratedMessage implements
// @@protoc_insertion_point(message_implements:discovery.ChaincodeQuery)
ChaincodeQueryOrBuilder {
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= */ "",
ChaincodeQuery.class.getName());
}
// Use ChaincodeQuery.newBuilder() to construct.
private ChaincodeQuery(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
}
private ChaincodeQuery() {
interests_ = java.util.Collections.emptyList();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.hyperledger.fabric.protos.discovery.ProtocolProto.internal_static_discovery_ChaincodeQuery_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.hyperledger.fabric.protos.discovery.ProtocolProto.internal_static_discovery_ChaincodeQuery_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.hyperledger.fabric.protos.discovery.ChaincodeQuery.class, org.hyperledger.fabric.protos.discovery.ChaincodeQuery.Builder.class);
}
public static final int INTERESTS_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private java.util.List interests_;
/**
* repeated .protos.ChaincodeInterest interests = 1 [json_name = "interests"];
*/
@java.lang.Override
public java.util.List getInterestsList() {
return interests_;
}
/**
* repeated .protos.ChaincodeInterest interests = 1 [json_name = "interests"];
*/
@java.lang.Override
public java.util.List extends org.hyperledger.fabric.protos.peer.ChaincodeInterestOrBuilder>
getInterestsOrBuilderList() {
return interests_;
}
/**
* repeated .protos.ChaincodeInterest interests = 1 [json_name = "interests"];
*/
@java.lang.Override
public int getInterestsCount() {
return interests_.size();
}
/**
* repeated .protos.ChaincodeInterest interests = 1 [json_name = "interests"];
*/
@java.lang.Override
public org.hyperledger.fabric.protos.peer.ChaincodeInterest getInterests(int index) {
return interests_.get(index);
}
/**
* repeated .protos.ChaincodeInterest interests = 1 [json_name = "interests"];
*/
@java.lang.Override
public org.hyperledger.fabric.protos.peer.ChaincodeInterestOrBuilder getInterestsOrBuilder(
int index) {
return interests_.get(index);
}
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 {
for (int i = 0; i < interests_.size(); i++) {
output.writeMessage(1, interests_.get(i));
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
for (int i = 0; i < interests_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, interests_.get(i));
}
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.discovery.ChaincodeQuery)) {
return super.equals(obj);
}
org.hyperledger.fabric.protos.discovery.ChaincodeQuery other = (org.hyperledger.fabric.protos.discovery.ChaincodeQuery) obj;
if (!getInterestsList()
.equals(other.getInterestsList())) 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();
if (getInterestsCount() > 0) {
hash = (37 * hash) + INTERESTS_FIELD_NUMBER;
hash = (53 * hash) + getInterestsList().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.hyperledger.fabric.protos.discovery.ChaincodeQuery parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.discovery.ChaincodeQuery 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.discovery.ChaincodeQuery parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.discovery.ChaincodeQuery 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.discovery.ChaincodeQuery parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.discovery.ChaincodeQuery parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.hyperledger.fabric.protos.discovery.ChaincodeQuery parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input);
}
public static org.hyperledger.fabric.protos.discovery.ChaincodeQuery 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.discovery.ChaincodeQuery parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseDelimitedWithIOException(PARSER, input);
}
public static org.hyperledger.fabric.protos.discovery.ChaincodeQuery 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.discovery.ChaincodeQuery parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input);
}
public static org.hyperledger.fabric.protos.discovery.ChaincodeQuery 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.discovery.ChaincodeQuery 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;
}
/**
*
* ChaincodeQuery requests ChaincodeQueryResults for a given
* list of chaincode invocations.
* Each invocation is a separate one, and the endorsement policy
* is evaluated independantly for each given interest.
*
*
* Protobuf type {@code discovery.ChaincodeQuery}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder implements
// @@protoc_insertion_point(builder_implements:discovery.ChaincodeQuery)
org.hyperledger.fabric.protos.discovery.ChaincodeQueryOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.hyperledger.fabric.protos.discovery.ProtocolProto.internal_static_discovery_ChaincodeQuery_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.hyperledger.fabric.protos.discovery.ProtocolProto.internal_static_discovery_ChaincodeQuery_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.hyperledger.fabric.protos.discovery.ChaincodeQuery.class, org.hyperledger.fabric.protos.discovery.ChaincodeQuery.Builder.class);
}
// Construct using org.hyperledger.fabric.protos.discovery.ChaincodeQuery.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
if (interestsBuilder_ == null) {
interests_ = java.util.Collections.emptyList();
} else {
interests_ = null;
interestsBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.hyperledger.fabric.protos.discovery.ProtocolProto.internal_static_discovery_ChaincodeQuery_descriptor;
}
@java.lang.Override
public org.hyperledger.fabric.protos.discovery.ChaincodeQuery getDefaultInstanceForType() {
return org.hyperledger.fabric.protos.discovery.ChaincodeQuery.getDefaultInstance();
}
@java.lang.Override
public org.hyperledger.fabric.protos.discovery.ChaincodeQuery build() {
org.hyperledger.fabric.protos.discovery.ChaincodeQuery result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public org.hyperledger.fabric.protos.discovery.ChaincodeQuery buildPartial() {
org.hyperledger.fabric.protos.discovery.ChaincodeQuery result = new org.hyperledger.fabric.protos.discovery.ChaincodeQuery(this);
buildPartialRepeatedFields(result);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartialRepeatedFields(org.hyperledger.fabric.protos.discovery.ChaincodeQuery result) {
if (interestsBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)) {
interests_ = java.util.Collections.unmodifiableList(interests_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.interests_ = interests_;
} else {
result.interests_ = interestsBuilder_.build();
}
}
private void buildPartial0(org.hyperledger.fabric.protos.discovery.ChaincodeQuery result) {
int from_bitField0_ = bitField0_;
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.hyperledger.fabric.protos.discovery.ChaincodeQuery) {
return mergeFrom((org.hyperledger.fabric.protos.discovery.ChaincodeQuery)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.hyperledger.fabric.protos.discovery.ChaincodeQuery other) {
if (other == org.hyperledger.fabric.protos.discovery.ChaincodeQuery.getDefaultInstance()) return this;
if (interestsBuilder_ == null) {
if (!other.interests_.isEmpty()) {
if (interests_.isEmpty()) {
interests_ = other.interests_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureInterestsIsMutable();
interests_.addAll(other.interests_);
}
onChanged();
}
} else {
if (!other.interests_.isEmpty()) {
if (interestsBuilder_.isEmpty()) {
interestsBuilder_.dispose();
interestsBuilder_ = null;
interests_ = other.interests_;
bitField0_ = (bitField0_ & ~0x00000001);
interestsBuilder_ =
com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ?
getInterestsFieldBuilder() : null;
} else {
interestsBuilder_.addAllMessages(other.interests_);
}
}
}
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: {
org.hyperledger.fabric.protos.peer.ChaincodeInterest m =
input.readMessage(
org.hyperledger.fabric.protos.peer.ChaincodeInterest.parser(),
extensionRegistry);
if (interestsBuilder_ == null) {
ensureInterestsIsMutable();
interests_.add(m);
} else {
interestsBuilder_.addMessage(m);
}
break;
} // case 10
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.util.List interests_ =
java.util.Collections.emptyList();
private void ensureInterestsIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
interests_ = new java.util.ArrayList(interests_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilder<
org.hyperledger.fabric.protos.peer.ChaincodeInterest, org.hyperledger.fabric.protos.peer.ChaincodeInterest.Builder, org.hyperledger.fabric.protos.peer.ChaincodeInterestOrBuilder> interestsBuilder_;
/**
* repeated .protos.ChaincodeInterest interests = 1 [json_name = "interests"];
*/
public java.util.List getInterestsList() {
if (interestsBuilder_ == null) {
return java.util.Collections.unmodifiableList(interests_);
} else {
return interestsBuilder_.getMessageList();
}
}
/**
* repeated .protos.ChaincodeInterest interests = 1 [json_name = "interests"];
*/
public int getInterestsCount() {
if (interestsBuilder_ == null) {
return interests_.size();
} else {
return interestsBuilder_.getCount();
}
}
/**
* repeated .protos.ChaincodeInterest interests = 1 [json_name = "interests"];
*/
public org.hyperledger.fabric.protos.peer.ChaincodeInterest getInterests(int index) {
if (interestsBuilder_ == null) {
return interests_.get(index);
} else {
return interestsBuilder_.getMessage(index);
}
}
/**
* repeated .protos.ChaincodeInterest interests = 1 [json_name = "interests"];
*/
public Builder setInterests(
int index, org.hyperledger.fabric.protos.peer.ChaincodeInterest value) {
if (interestsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureInterestsIsMutable();
interests_.set(index, value);
onChanged();
} else {
interestsBuilder_.setMessage(index, value);
}
return this;
}
/**
* repeated .protos.ChaincodeInterest interests = 1 [json_name = "interests"];
*/
public Builder setInterests(
int index, org.hyperledger.fabric.protos.peer.ChaincodeInterest.Builder builderForValue) {
if (interestsBuilder_ == null) {
ensureInterestsIsMutable();
interests_.set(index, builderForValue.build());
onChanged();
} else {
interestsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .protos.ChaincodeInterest interests = 1 [json_name = "interests"];
*/
public Builder addInterests(org.hyperledger.fabric.protos.peer.ChaincodeInterest value) {
if (interestsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureInterestsIsMutable();
interests_.add(value);
onChanged();
} else {
interestsBuilder_.addMessage(value);
}
return this;
}
/**
* repeated .protos.ChaincodeInterest interests = 1 [json_name = "interests"];
*/
public Builder addInterests(
int index, org.hyperledger.fabric.protos.peer.ChaincodeInterest value) {
if (interestsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureInterestsIsMutable();
interests_.add(index, value);
onChanged();
} else {
interestsBuilder_.addMessage(index, value);
}
return this;
}
/**
* repeated .protos.ChaincodeInterest interests = 1 [json_name = "interests"];
*/
public Builder addInterests(
org.hyperledger.fabric.protos.peer.ChaincodeInterest.Builder builderForValue) {
if (interestsBuilder_ == null) {
ensureInterestsIsMutable();
interests_.add(builderForValue.build());
onChanged();
} else {
interestsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* repeated .protos.ChaincodeInterest interests = 1 [json_name = "interests"];
*/
public Builder addInterests(
int index, org.hyperledger.fabric.protos.peer.ChaincodeInterest.Builder builderForValue) {
if (interestsBuilder_ == null) {
ensureInterestsIsMutable();
interests_.add(index, builderForValue.build());
onChanged();
} else {
interestsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .protos.ChaincodeInterest interests = 1 [json_name = "interests"];
*/
public Builder addAllInterests(
java.lang.Iterable extends org.hyperledger.fabric.protos.peer.ChaincodeInterest> values) {
if (interestsBuilder_ == null) {
ensureInterestsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, interests_);
onChanged();
} else {
interestsBuilder_.addAllMessages(values);
}
return this;
}
/**
* repeated .protos.ChaincodeInterest interests = 1 [json_name = "interests"];
*/
public Builder clearInterests() {
if (interestsBuilder_ == null) {
interests_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
interestsBuilder_.clear();
}
return this;
}
/**
* repeated .protos.ChaincodeInterest interests = 1 [json_name = "interests"];
*/
public Builder removeInterests(int index) {
if (interestsBuilder_ == null) {
ensureInterestsIsMutable();
interests_.remove(index);
onChanged();
} else {
interestsBuilder_.remove(index);
}
return this;
}
/**
* repeated .protos.ChaincodeInterest interests = 1 [json_name = "interests"];
*/
public org.hyperledger.fabric.protos.peer.ChaincodeInterest.Builder getInterestsBuilder(
int index) {
return getInterestsFieldBuilder().getBuilder(index);
}
/**
* repeated .protos.ChaincodeInterest interests = 1 [json_name = "interests"];
*/
public org.hyperledger.fabric.protos.peer.ChaincodeInterestOrBuilder getInterestsOrBuilder(
int index) {
if (interestsBuilder_ == null) {
return interests_.get(index); } else {
return interestsBuilder_.getMessageOrBuilder(index);
}
}
/**
* repeated .protos.ChaincodeInterest interests = 1 [json_name = "interests"];
*/
public java.util.List extends org.hyperledger.fabric.protos.peer.ChaincodeInterestOrBuilder>
getInterestsOrBuilderList() {
if (interestsBuilder_ != null) {
return interestsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(interests_);
}
}
/**
* repeated .protos.ChaincodeInterest interests = 1 [json_name = "interests"];
*/
public org.hyperledger.fabric.protos.peer.ChaincodeInterest.Builder addInterestsBuilder() {
return getInterestsFieldBuilder().addBuilder(
org.hyperledger.fabric.protos.peer.ChaincodeInterest.getDefaultInstance());
}
/**
* repeated .protos.ChaincodeInterest interests = 1 [json_name = "interests"];
*/
public org.hyperledger.fabric.protos.peer.ChaincodeInterest.Builder addInterestsBuilder(
int index) {
return getInterestsFieldBuilder().addBuilder(
index, org.hyperledger.fabric.protos.peer.ChaincodeInterest.getDefaultInstance());
}
/**
* repeated .protos.ChaincodeInterest interests = 1 [json_name = "interests"];
*/
public java.util.List
getInterestsBuilderList() {
return getInterestsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilder<
org.hyperledger.fabric.protos.peer.ChaincodeInterest, org.hyperledger.fabric.protos.peer.ChaincodeInterest.Builder, org.hyperledger.fabric.protos.peer.ChaincodeInterestOrBuilder>
getInterestsFieldBuilder() {
if (interestsBuilder_ == null) {
interestsBuilder_ = new com.google.protobuf.RepeatedFieldBuilder<
org.hyperledger.fabric.protos.peer.ChaincodeInterest, org.hyperledger.fabric.protos.peer.ChaincodeInterest.Builder, org.hyperledger.fabric.protos.peer.ChaincodeInterestOrBuilder>(
interests_,
((bitField0_ & 0x00000001) != 0),
getParentForChildren(),
isClean());
interests_ = null;
}
return interestsBuilder_;
}
// @@protoc_insertion_point(builder_scope:discovery.ChaincodeQuery)
}
// @@protoc_insertion_point(class_scope:discovery.ChaincodeQuery)
private static final org.hyperledger.fabric.protos.discovery.ChaincodeQuery DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new org.hyperledger.fabric.protos.discovery.ChaincodeQuery();
}
public static org.hyperledger.fabric.protos.discovery.ChaincodeQuery getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ChaincodeQuery 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.discovery.ChaincodeQuery getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy