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

org.hyperledger.fabric.protos.common.Capabilities Maven / Gradle / Ivy

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

package org.hyperledger.fabric.protos.common;

/**
 * 
 * Capabilities message defines the capabilities a particular binary must implement
 * for that binary to be able to safely participate in the channel.  The capabilities
 * message is defined at the /Channel level, the /Channel/Application level, and the
 * /Channel/Orderer level.
 *
 * The /Channel level capabilties define capabilities which both the orderer and peer
 * binaries must satisfy.  These capabilties might be things like a new MSP type,
 * or a new policy type.
 *
 * The /Channel/Orderer level capabilties define capabilities which must be supported
 * by the orderer, but which have no bearing on the behavior of the peer.  For instance
 * if the orderer changes the logic for how it constructs new channels, only all orderers
 * must agree on the new logic.  The peers do not need to be aware of this change as
 * they only interact with the channel after it has been constructed.
 *
 * Finally, the /Channel/Application level capabilities define capabilities which the peer
 * binary must satisfy, but which have no bearing on the orderer.  For instance, if the
 * peer adds a new UTXO transaction type, or changes the chaincode lifecycle requirements,
 * all peers must agree on the new logic.  However, orderers never inspect transactions
 * this deeply, and therefore have no need to be aware of the change.
 *
 * The capabilities strings defined in these messages typically correspond to release
 * binary versions (e.g. "V1.1"), and are used primarilly as a mechanism for a fully
 * upgraded network to switch from one set of logic to a new one.
 *
 * Although for V1.1, the orderers must be upgraded to V1.1 prior to the rest of the
 * network, going forward, because of the split between the /Channel, /Channel/Orderer
 * and /Channel/Application capabilities.  It should be possible for the orderer and
 * application networks to upgrade themselves independently (with the exception of any
 * new capabilities defined at the /Channel level).
 * 
* * Protobuf type {@code common.Capabilities} */ public final class Capabilities extends com.google.protobuf.GeneratedMessage implements // @@protoc_insertion_point(message_implements:common.Capabilities) CapabilitiesOrBuilder { 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= */ "", Capabilities.class.getName()); } // Use Capabilities.newBuilder() to construct. private Capabilities(com.google.protobuf.GeneratedMessage.Builder builder) { super(builder); } private Capabilities() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.hyperledger.fabric.protos.common.ConfigurationProto.internal_static_common_Capabilities_descriptor; } @SuppressWarnings({"rawtypes"}) @java.lang.Override protected com.google.protobuf.MapFieldReflectionAccessor internalGetMapFieldReflection( int number) { switch (number) { case 1: return internalGetCapabilities(); default: throw new RuntimeException( "Invalid map field number: " + number); } } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return org.hyperledger.fabric.protos.common.ConfigurationProto.internal_static_common_Capabilities_fieldAccessorTable .ensureFieldAccessorsInitialized( org.hyperledger.fabric.protos.common.Capabilities.class, org.hyperledger.fabric.protos.common.Capabilities.Builder.class); } public static final int CAPABILITIES_FIELD_NUMBER = 1; private static final class CapabilitiesDefaultEntryHolder { static final com.google.protobuf.MapEntry< java.lang.String, org.hyperledger.fabric.protos.common.Capability> defaultEntry = com.google.protobuf.MapEntry .newDefaultInstance( org.hyperledger.fabric.protos.common.ConfigurationProto.internal_static_common_Capabilities_CapabilitiesEntry_descriptor, com.google.protobuf.WireFormat.FieldType.STRING, "", com.google.protobuf.WireFormat.FieldType.MESSAGE, org.hyperledger.fabric.protos.common.Capability.getDefaultInstance()); } @SuppressWarnings("serial") private com.google.protobuf.MapField< java.lang.String, org.hyperledger.fabric.protos.common.Capability> capabilities_; private com.google.protobuf.MapField internalGetCapabilities() { if (capabilities_ == null) { return com.google.protobuf.MapField.emptyMapField( CapabilitiesDefaultEntryHolder.defaultEntry); } return capabilities_; } public int getCapabilitiesCount() { return internalGetCapabilities().getMap().size(); } /** * map<string, .common.Capability> capabilities = 1 [json_name = "capabilities"]; */ @java.lang.Override public boolean containsCapabilities( java.lang.String key) { if (key == null) { throw new NullPointerException("map key"); } return internalGetCapabilities().getMap().containsKey(key); } /** * Use {@link #getCapabilitiesMap()} instead. */ @java.lang.Override @java.lang.Deprecated public java.util.Map getCapabilities() { return getCapabilitiesMap(); } /** * map<string, .common.Capability> capabilities = 1 [json_name = "capabilities"]; */ @java.lang.Override public java.util.Map getCapabilitiesMap() { return internalGetCapabilities().getMap(); } /** * map<string, .common.Capability> capabilities = 1 [json_name = "capabilities"]; */ @java.lang.Override public /* nullable */ org.hyperledger.fabric.protos.common.Capability getCapabilitiesOrDefault( java.lang.String key, /* nullable */ org.hyperledger.fabric.protos.common.Capability defaultValue) { if (key == null) { throw new NullPointerException("map key"); } java.util.Map map = internalGetCapabilities().getMap(); return map.containsKey(key) ? map.get(key) : defaultValue; } /** * map<string, .common.Capability> capabilities = 1 [json_name = "capabilities"]; */ @java.lang.Override public org.hyperledger.fabric.protos.common.Capability getCapabilitiesOrThrow( java.lang.String key) { if (key == null) { throw new NullPointerException("map key"); } java.util.Map map = internalGetCapabilities().getMap(); if (!map.containsKey(key)) { throw new java.lang.IllegalArgumentException(); } return map.get(key); } 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 { com.google.protobuf.GeneratedMessage .serializeStringMapTo( output, internalGetCapabilities(), CapabilitiesDefaultEntryHolder.defaultEntry, 1); getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; for (java.util.Map.Entry entry : internalGetCapabilities().getMap().entrySet()) { com.google.protobuf.MapEntry capabilities__ = CapabilitiesDefaultEntryHolder.defaultEntry.newBuilderForType() .setKey(entry.getKey()) .setValue(entry.getValue()) .build(); size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, capabilities__); } 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.common.Capabilities)) { return super.equals(obj); } org.hyperledger.fabric.protos.common.Capabilities other = (org.hyperledger.fabric.protos.common.Capabilities) obj; if (!internalGetCapabilities().equals( other.internalGetCapabilities())) 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 (!internalGetCapabilities().getMap().isEmpty()) { hash = (37 * hash) + CAPABILITIES_FIELD_NUMBER; hash = (53 * hash) + internalGetCapabilities().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static org.hyperledger.fabric.protos.common.Capabilities parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.hyperledger.fabric.protos.common.Capabilities 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.common.Capabilities parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.hyperledger.fabric.protos.common.Capabilities 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.common.Capabilities parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.hyperledger.fabric.protos.common.Capabilities parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.hyperledger.fabric.protos.common.Capabilities parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseWithIOException(PARSER, input); } public static org.hyperledger.fabric.protos.common.Capabilities 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.common.Capabilities parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseDelimitedWithIOException(PARSER, input); } public static org.hyperledger.fabric.protos.common.Capabilities 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.common.Capabilities parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseWithIOException(PARSER, input); } public static org.hyperledger.fabric.protos.common.Capabilities 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.common.Capabilities 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; } /** *
   * Capabilities message defines the capabilities a particular binary must implement
   * for that binary to be able to safely participate in the channel.  The capabilities
   * message is defined at the /Channel level, the /Channel/Application level, and the
   * /Channel/Orderer level.
   *
   * The /Channel level capabilties define capabilities which both the orderer and peer
   * binaries must satisfy.  These capabilties might be things like a new MSP type,
   * or a new policy type.
   *
   * The /Channel/Orderer level capabilties define capabilities which must be supported
   * by the orderer, but which have no bearing on the behavior of the peer.  For instance
   * if the orderer changes the logic for how it constructs new channels, only all orderers
   * must agree on the new logic.  The peers do not need to be aware of this change as
   * they only interact with the channel after it has been constructed.
   *
   * Finally, the /Channel/Application level capabilities define capabilities which the peer
   * binary must satisfy, but which have no bearing on the orderer.  For instance, if the
   * peer adds a new UTXO transaction type, or changes the chaincode lifecycle requirements,
   * all peers must agree on the new logic.  However, orderers never inspect transactions
   * this deeply, and therefore have no need to be aware of the change.
   *
   * The capabilities strings defined in these messages typically correspond to release
   * binary versions (e.g. "V1.1"), and are used primarilly as a mechanism for a fully
   * upgraded network to switch from one set of logic to a new one.
   *
   * Although for V1.1, the orderers must be upgraded to V1.1 prior to the rest of the
   * network, going forward, because of the split between the /Channel, /Channel/Orderer
   * and /Channel/Application capabilities.  It should be possible for the orderer and
   * application networks to upgrade themselves independently (with the exception of any
   * new capabilities defined at the /Channel level).
   * 
* * Protobuf type {@code common.Capabilities} */ public static final class Builder extends com.google.protobuf.GeneratedMessage.Builder implements // @@protoc_insertion_point(builder_implements:common.Capabilities) org.hyperledger.fabric.protos.common.CapabilitiesOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.hyperledger.fabric.protos.common.ConfigurationProto.internal_static_common_Capabilities_descriptor; } @SuppressWarnings({"rawtypes"}) protected com.google.protobuf.MapFieldReflectionAccessor internalGetMapFieldReflection( int number) { switch (number) { case 1: return internalGetCapabilities(); default: throw new RuntimeException( "Invalid map field number: " + number); } } @SuppressWarnings({"rawtypes"}) protected com.google.protobuf.MapFieldReflectionAccessor internalGetMutableMapFieldReflection( int number) { switch (number) { case 1: return internalGetMutableCapabilities(); default: throw new RuntimeException( "Invalid map field number: " + number); } } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return org.hyperledger.fabric.protos.common.ConfigurationProto.internal_static_common_Capabilities_fieldAccessorTable .ensureFieldAccessorsInitialized( org.hyperledger.fabric.protos.common.Capabilities.class, org.hyperledger.fabric.protos.common.Capabilities.Builder.class); } // Construct using org.hyperledger.fabric.protos.common.Capabilities.newBuilder() private Builder() { } private Builder( com.google.protobuf.GeneratedMessage.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; internalGetMutableCapabilities().clear(); return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return org.hyperledger.fabric.protos.common.ConfigurationProto.internal_static_common_Capabilities_descriptor; } @java.lang.Override public org.hyperledger.fabric.protos.common.Capabilities getDefaultInstanceForType() { return org.hyperledger.fabric.protos.common.Capabilities.getDefaultInstance(); } @java.lang.Override public org.hyperledger.fabric.protos.common.Capabilities build() { org.hyperledger.fabric.protos.common.Capabilities result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public org.hyperledger.fabric.protos.common.Capabilities buildPartial() { org.hyperledger.fabric.protos.common.Capabilities result = new org.hyperledger.fabric.protos.common.Capabilities(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(org.hyperledger.fabric.protos.common.Capabilities result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.capabilities_ = internalGetCapabilities().build(CapabilitiesDefaultEntryHolder.defaultEntry); } } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof org.hyperledger.fabric.protos.common.Capabilities) { return mergeFrom((org.hyperledger.fabric.protos.common.Capabilities)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(org.hyperledger.fabric.protos.common.Capabilities other) { if (other == org.hyperledger.fabric.protos.common.Capabilities.getDefaultInstance()) return this; internalGetMutableCapabilities().mergeFrom( other.internalGetCapabilities()); bitField0_ |= 0x00000001; 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: { com.google.protobuf.MapEntry capabilities__ = input.readMessage( CapabilitiesDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry); internalGetMutableCapabilities().ensureBuilderMap().put( capabilities__.getKey(), capabilities__.getValue()); bitField0_ |= 0x00000001; 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 static final class CapabilitiesConverter implements com.google.protobuf.MapFieldBuilder.Converter { @java.lang.Override public org.hyperledger.fabric.protos.common.Capability build(org.hyperledger.fabric.protos.common.CapabilityOrBuilder val) { if (val instanceof org.hyperledger.fabric.protos.common.Capability) { return (org.hyperledger.fabric.protos.common.Capability) val; } return ((org.hyperledger.fabric.protos.common.Capability.Builder) val).build(); } @java.lang.Override public com.google.protobuf.MapEntry defaultEntry() { return CapabilitiesDefaultEntryHolder.defaultEntry; } }; private static final CapabilitiesConverter capabilitiesConverter = new CapabilitiesConverter(); private com.google.protobuf.MapFieldBuilder< java.lang.String, org.hyperledger.fabric.protos.common.CapabilityOrBuilder, org.hyperledger.fabric.protos.common.Capability, org.hyperledger.fabric.protos.common.Capability.Builder> capabilities_; private com.google.protobuf.MapFieldBuilder internalGetCapabilities() { if (capabilities_ == null) { return new com.google.protobuf.MapFieldBuilder<>(capabilitiesConverter); } return capabilities_; } private com.google.protobuf.MapFieldBuilder internalGetMutableCapabilities() { if (capabilities_ == null) { capabilities_ = new com.google.protobuf.MapFieldBuilder<>(capabilitiesConverter); } bitField0_ |= 0x00000001; onChanged(); return capabilities_; } public int getCapabilitiesCount() { return internalGetCapabilities().ensureBuilderMap().size(); } /** * map<string, .common.Capability> capabilities = 1 [json_name = "capabilities"]; */ @java.lang.Override public boolean containsCapabilities( java.lang.String key) { if (key == null) { throw new NullPointerException("map key"); } return internalGetCapabilities().ensureBuilderMap().containsKey(key); } /** * Use {@link #getCapabilitiesMap()} instead. */ @java.lang.Override @java.lang.Deprecated public java.util.Map getCapabilities() { return getCapabilitiesMap(); } /** * map<string, .common.Capability> capabilities = 1 [json_name = "capabilities"]; */ @java.lang.Override public java.util.Map getCapabilitiesMap() { return internalGetCapabilities().getImmutableMap(); } /** * map<string, .common.Capability> capabilities = 1 [json_name = "capabilities"]; */ @java.lang.Override public /* nullable */ org.hyperledger.fabric.protos.common.Capability getCapabilitiesOrDefault( java.lang.String key, /* nullable */ org.hyperledger.fabric.protos.common.Capability defaultValue) { if (key == null) { throw new NullPointerException("map key"); } java.util.Map map = internalGetMutableCapabilities().ensureBuilderMap(); return map.containsKey(key) ? capabilitiesConverter.build(map.get(key)) : defaultValue; } /** * map<string, .common.Capability> capabilities = 1 [json_name = "capabilities"]; */ @java.lang.Override public org.hyperledger.fabric.protos.common.Capability getCapabilitiesOrThrow( java.lang.String key) { if (key == null) { throw new NullPointerException("map key"); } java.util.Map map = internalGetMutableCapabilities().ensureBuilderMap(); if (!map.containsKey(key)) { throw new java.lang.IllegalArgumentException(); } return capabilitiesConverter.build(map.get(key)); } public Builder clearCapabilities() { bitField0_ = (bitField0_ & ~0x00000001); internalGetMutableCapabilities().clear(); return this; } /** * map<string, .common.Capability> capabilities = 1 [json_name = "capabilities"]; */ public Builder removeCapabilities( java.lang.String key) { if (key == null) { throw new NullPointerException("map key"); } internalGetMutableCapabilities().ensureBuilderMap() .remove(key); return this; } /** * Use alternate mutation accessors instead. */ @java.lang.Deprecated public java.util.Map getMutableCapabilities() { bitField0_ |= 0x00000001; return internalGetMutableCapabilities().ensureMessageMap(); } /** * map<string, .common.Capability> capabilities = 1 [json_name = "capabilities"]; */ public Builder putCapabilities( java.lang.String key, org.hyperledger.fabric.protos.common.Capability value) { if (key == null) { throw new NullPointerException("map key"); } if (value == null) { throw new NullPointerException("map value"); } internalGetMutableCapabilities().ensureBuilderMap() .put(key, value); bitField0_ |= 0x00000001; return this; } /** * map<string, .common.Capability> capabilities = 1 [json_name = "capabilities"]; */ public Builder putAllCapabilities( java.util.Map values) { for (java.util.Map.Entry e : values.entrySet()) { if (e.getKey() == null || e.getValue() == null) { throw new NullPointerException(); } } internalGetMutableCapabilities().ensureBuilderMap() .putAll(values); bitField0_ |= 0x00000001; return this; } /** * map<string, .common.Capability> capabilities = 1 [json_name = "capabilities"]; */ public org.hyperledger.fabric.protos.common.Capability.Builder putCapabilitiesBuilderIfAbsent( java.lang.String key) { java.util.Map builderMap = internalGetMutableCapabilities().ensureBuilderMap(); org.hyperledger.fabric.protos.common.CapabilityOrBuilder entry = builderMap.get(key); if (entry == null) { entry = org.hyperledger.fabric.protos.common.Capability.newBuilder(); builderMap.put(key, entry); } if (entry instanceof org.hyperledger.fabric.protos.common.Capability) { entry = ((org.hyperledger.fabric.protos.common.Capability) entry).toBuilder(); builderMap.put(key, entry); } return (org.hyperledger.fabric.protos.common.Capability.Builder) entry; } // @@protoc_insertion_point(builder_scope:common.Capabilities) } // @@protoc_insertion_point(class_scope:common.Capabilities) private static final org.hyperledger.fabric.protos.common.Capabilities DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new org.hyperledger.fabric.protos.common.Capabilities(); } public static org.hyperledger.fabric.protos.common.Capabilities getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public Capabilities 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.common.Capabilities getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy