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

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

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

package org.hyperledger.fabric.protos.peer;

/**
 * 
 * ChaincodeData defines the datastructure for chaincodes to be serialized by proto
 * Type provides an additional check by directing to use a specific package after instantiation
 * Data is Type specific (see CDSPackage and SignedCDSPackage)
 * 
* * Protobuf type {@code protos.ChaincodeData} */ public final class ChaincodeData extends com.google.protobuf.GeneratedMessage implements // @@protoc_insertion_point(message_implements:protos.ChaincodeData) ChaincodeDataOrBuilder { 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= */ "", ChaincodeData.class.getName()); } // Use ChaincodeData.newBuilder() to construct. private ChaincodeData(com.google.protobuf.GeneratedMessage.Builder builder) { super(builder); } private ChaincodeData() { name_ = ""; version_ = ""; escc_ = ""; vscc_ = ""; data_ = com.google.protobuf.ByteString.EMPTY; id_ = com.google.protobuf.ByteString.EMPTY; } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.hyperledger.fabric.protos.peer.ChaincodeProto.internal_static_protos_ChaincodeData_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return org.hyperledger.fabric.protos.peer.ChaincodeProto.internal_static_protos_ChaincodeData_fieldAccessorTable .ensureFieldAccessorsInitialized( org.hyperledger.fabric.protos.peer.ChaincodeData.class, org.hyperledger.fabric.protos.peer.ChaincodeData.Builder.class); } private int bitField0_; public static final int NAME_FIELD_NUMBER = 1; @SuppressWarnings("serial") private volatile java.lang.Object name_ = ""; /** *
   * Name of the chaincode
   * 
* * string name = 1 [json_name = "name"]; * @return The name. */ @java.lang.Override public java.lang.String getName() { java.lang.Object ref = name_; 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(); name_ = s; return s; } } /** *
   * Name of the chaincode
   * 
* * string name = 1 [json_name = "name"]; * @return The bytes for name. */ @java.lang.Override public com.google.protobuf.ByteString getNameBytes() { java.lang.Object ref = name_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); name_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int VERSION_FIELD_NUMBER = 2; @SuppressWarnings("serial") private volatile java.lang.Object version_ = ""; /** *
   * Version of the chaincode
   * 
* * string version = 2 [json_name = "version"]; * @return The version. */ @java.lang.Override public java.lang.String getVersion() { java.lang.Object ref = version_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); version_ = s; return s; } } /** *
   * Version of the chaincode
   * 
* * string version = 2 [json_name = "version"]; * @return The bytes for version. */ @java.lang.Override public com.google.protobuf.ByteString getVersionBytes() { java.lang.Object ref = version_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); version_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int ESCC_FIELD_NUMBER = 3; @SuppressWarnings("serial") private volatile java.lang.Object escc_ = ""; /** *
   * Escc for the chaincode instance
   * 
* * string escc = 3 [json_name = "escc"]; * @return The escc. */ @java.lang.Override public java.lang.String getEscc() { java.lang.Object ref = escc_; 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(); escc_ = s; return s; } } /** *
   * Escc for the chaincode instance
   * 
* * string escc = 3 [json_name = "escc"]; * @return The bytes for escc. */ @java.lang.Override public com.google.protobuf.ByteString getEsccBytes() { java.lang.Object ref = escc_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); escc_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int VSCC_FIELD_NUMBER = 4; @SuppressWarnings("serial") private volatile java.lang.Object vscc_ = ""; /** *
   * Vscc for the chaincode instance
   * 
* * string vscc = 4 [json_name = "vscc"]; * @return The vscc. */ @java.lang.Override public java.lang.String getVscc() { java.lang.Object ref = vscc_; 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(); vscc_ = s; return s; } } /** *
   * Vscc for the chaincode instance
   * 
* * string vscc = 4 [json_name = "vscc"]; * @return The bytes for vscc. */ @java.lang.Override public com.google.protobuf.ByteString getVsccBytes() { java.lang.Object ref = vscc_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); vscc_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int POLICY_FIELD_NUMBER = 5; private org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope policy_; /** *
   * Policy endorsement policy for the chaincode instance
   * 
* * .common.SignaturePolicyEnvelope policy = 5 [json_name = "policy"]; * @return Whether the policy field is set. */ @java.lang.Override public boolean hasPolicy() { return ((bitField0_ & 0x00000001) != 0); } /** *
   * Policy endorsement policy for the chaincode instance
   * 
* * .common.SignaturePolicyEnvelope policy = 5 [json_name = "policy"]; * @return The policy. */ @java.lang.Override public org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope getPolicy() { return policy_ == null ? org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.getDefaultInstance() : policy_; } /** *
   * Policy endorsement policy for the chaincode instance
   * 
* * .common.SignaturePolicyEnvelope policy = 5 [json_name = "policy"]; */ @java.lang.Override public org.hyperledger.fabric.protos.common.SignaturePolicyEnvelopeOrBuilder getPolicyOrBuilder() { return policy_ == null ? org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.getDefaultInstance() : policy_; } public static final int DATA_FIELD_NUMBER = 6; private com.google.protobuf.ByteString data_ = com.google.protobuf.ByteString.EMPTY; /** *
   * Data data specific to the package
   * 
* * bytes data = 6 [json_name = "data"]; * @return The data. */ @java.lang.Override public com.google.protobuf.ByteString getData() { return data_; } public static final int ID_FIELD_NUMBER = 7; private com.google.protobuf.ByteString id_ = com.google.protobuf.ByteString.EMPTY; /** *
   * Id of the chaincode that's the unique fingerprint for the CC This is not
   * currently used anywhere but serves as a good eyecatcher
   * 
* * bytes id = 7 [json_name = "id"]; * @return The id. */ @java.lang.Override public com.google.protobuf.ByteString getId() { return id_; } public static final int INSTANTIATION_POLICY_FIELD_NUMBER = 8; private org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope instantiationPolicy_; /** *
   * InstantiationPolicy for the chaincode
   * 
* * .common.SignaturePolicyEnvelope instantiation_policy = 8 [json_name = "instantiationPolicy"]; * @return Whether the instantiationPolicy field is set. */ @java.lang.Override public boolean hasInstantiationPolicy() { return ((bitField0_ & 0x00000002) != 0); } /** *
   * InstantiationPolicy for the chaincode
   * 
* * .common.SignaturePolicyEnvelope instantiation_policy = 8 [json_name = "instantiationPolicy"]; * @return The instantiationPolicy. */ @java.lang.Override public org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope getInstantiationPolicy() { return instantiationPolicy_ == null ? org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.getDefaultInstance() : instantiationPolicy_; } /** *
   * InstantiationPolicy for the chaincode
   * 
* * .common.SignaturePolicyEnvelope instantiation_policy = 8 [json_name = "instantiationPolicy"]; */ @java.lang.Override public org.hyperledger.fabric.protos.common.SignaturePolicyEnvelopeOrBuilder getInstantiationPolicyOrBuilder() { return instantiationPolicy_ == null ? org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.getDefaultInstance() : instantiationPolicy_; } 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(name_)) { com.google.protobuf.GeneratedMessage.writeString(output, 1, name_); } if (!com.google.protobuf.GeneratedMessage.isStringEmpty(version_)) { com.google.protobuf.GeneratedMessage.writeString(output, 2, version_); } if (!com.google.protobuf.GeneratedMessage.isStringEmpty(escc_)) { com.google.protobuf.GeneratedMessage.writeString(output, 3, escc_); } if (!com.google.protobuf.GeneratedMessage.isStringEmpty(vscc_)) { com.google.protobuf.GeneratedMessage.writeString(output, 4, vscc_); } if (((bitField0_ & 0x00000001) != 0)) { output.writeMessage(5, getPolicy()); } if (!data_.isEmpty()) { output.writeBytes(6, data_); } if (!id_.isEmpty()) { output.writeBytes(7, id_); } if (((bitField0_ & 0x00000002) != 0)) { output.writeMessage(8, getInstantiationPolicy()); } 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(name_)) { size += com.google.protobuf.GeneratedMessage.computeStringSize(1, name_); } if (!com.google.protobuf.GeneratedMessage.isStringEmpty(version_)) { size += com.google.protobuf.GeneratedMessage.computeStringSize(2, version_); } if (!com.google.protobuf.GeneratedMessage.isStringEmpty(escc_)) { size += com.google.protobuf.GeneratedMessage.computeStringSize(3, escc_); } if (!com.google.protobuf.GeneratedMessage.isStringEmpty(vscc_)) { size += com.google.protobuf.GeneratedMessage.computeStringSize(4, vscc_); } if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(5, getPolicy()); } if (!data_.isEmpty()) { size += com.google.protobuf.CodedOutputStream .computeBytesSize(6, data_); } if (!id_.isEmpty()) { size += com.google.protobuf.CodedOutputStream .computeBytesSize(7, id_); } if (((bitField0_ & 0x00000002) != 0)) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(8, getInstantiationPolicy()); } 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.ChaincodeData)) { return super.equals(obj); } org.hyperledger.fabric.protos.peer.ChaincodeData other = (org.hyperledger.fabric.protos.peer.ChaincodeData) obj; if (!getName() .equals(other.getName())) return false; if (!getVersion() .equals(other.getVersion())) return false; if (!getEscc() .equals(other.getEscc())) return false; if (!getVscc() .equals(other.getVscc())) return false; if (hasPolicy() != other.hasPolicy()) return false; if (hasPolicy()) { if (!getPolicy() .equals(other.getPolicy())) return false; } if (!getData() .equals(other.getData())) return false; if (!getId() .equals(other.getId())) return false; if (hasInstantiationPolicy() != other.hasInstantiationPolicy()) return false; if (hasInstantiationPolicy()) { if (!getInstantiationPolicy() .equals(other.getInstantiationPolicy())) 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) + NAME_FIELD_NUMBER; hash = (53 * hash) + getName().hashCode(); hash = (37 * hash) + VERSION_FIELD_NUMBER; hash = (53 * hash) + getVersion().hashCode(); hash = (37 * hash) + ESCC_FIELD_NUMBER; hash = (53 * hash) + getEscc().hashCode(); hash = (37 * hash) + VSCC_FIELD_NUMBER; hash = (53 * hash) + getVscc().hashCode(); if (hasPolicy()) { hash = (37 * hash) + POLICY_FIELD_NUMBER; hash = (53 * hash) + getPolicy().hashCode(); } hash = (37 * hash) + DATA_FIELD_NUMBER; hash = (53 * hash) + getData().hashCode(); hash = (37 * hash) + ID_FIELD_NUMBER; hash = (53 * hash) + getId().hashCode(); if (hasInstantiationPolicy()) { hash = (37 * hash) + INSTANTIATION_POLICY_FIELD_NUMBER; hash = (53 * hash) + getInstantiationPolicy().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static org.hyperledger.fabric.protos.peer.ChaincodeData parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.hyperledger.fabric.protos.peer.ChaincodeData 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.ChaincodeData parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.hyperledger.fabric.protos.peer.ChaincodeData 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.ChaincodeData parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.hyperledger.fabric.protos.peer.ChaincodeData 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.ChaincodeData parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseWithIOException(PARSER, input); } public static org.hyperledger.fabric.protos.peer.ChaincodeData 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.ChaincodeData parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseDelimitedWithIOException(PARSER, input); } public static org.hyperledger.fabric.protos.peer.ChaincodeData 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.ChaincodeData 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.ChaincodeData 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.ChaincodeData 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; } /** *
   * ChaincodeData defines the datastructure for chaincodes to be serialized by proto
   * Type provides an additional check by directing to use a specific package after instantiation
   * Data is Type specific (see CDSPackage and SignedCDSPackage)
   * 
* * Protobuf type {@code protos.ChaincodeData} */ public static final class Builder extends com.google.protobuf.GeneratedMessage.Builder implements // @@protoc_insertion_point(builder_implements:protos.ChaincodeData) org.hyperledger.fabric.protos.peer.ChaincodeDataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.hyperledger.fabric.protos.peer.ChaincodeProto.internal_static_protos_ChaincodeData_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return org.hyperledger.fabric.protos.peer.ChaincodeProto.internal_static_protos_ChaincodeData_fieldAccessorTable .ensureFieldAccessorsInitialized( org.hyperledger.fabric.protos.peer.ChaincodeData.class, org.hyperledger.fabric.protos.peer.ChaincodeData.Builder.class); } // Construct using org.hyperledger.fabric.protos.peer.ChaincodeData.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessage.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessage .alwaysUseFieldBuilders) { getPolicyFieldBuilder(); getInstantiationPolicyFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; name_ = ""; version_ = ""; escc_ = ""; vscc_ = ""; policy_ = null; if (policyBuilder_ != null) { policyBuilder_.dispose(); policyBuilder_ = null; } data_ = com.google.protobuf.ByteString.EMPTY; id_ = com.google.protobuf.ByteString.EMPTY; instantiationPolicy_ = null; if (instantiationPolicyBuilder_ != null) { instantiationPolicyBuilder_.dispose(); instantiationPolicyBuilder_ = null; } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return org.hyperledger.fabric.protos.peer.ChaincodeProto.internal_static_protos_ChaincodeData_descriptor; } @java.lang.Override public org.hyperledger.fabric.protos.peer.ChaincodeData getDefaultInstanceForType() { return org.hyperledger.fabric.protos.peer.ChaincodeData.getDefaultInstance(); } @java.lang.Override public org.hyperledger.fabric.protos.peer.ChaincodeData build() { org.hyperledger.fabric.protos.peer.ChaincodeData result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public org.hyperledger.fabric.protos.peer.ChaincodeData buildPartial() { org.hyperledger.fabric.protos.peer.ChaincodeData result = new org.hyperledger.fabric.protos.peer.ChaincodeData(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(org.hyperledger.fabric.protos.peer.ChaincodeData result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.name_ = name_; } if (((from_bitField0_ & 0x00000002) != 0)) { result.version_ = version_; } if (((from_bitField0_ & 0x00000004) != 0)) { result.escc_ = escc_; } if (((from_bitField0_ & 0x00000008) != 0)) { result.vscc_ = vscc_; } int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000010) != 0)) { result.policy_ = policyBuilder_ == null ? policy_ : policyBuilder_.build(); to_bitField0_ |= 0x00000001; } if (((from_bitField0_ & 0x00000020) != 0)) { result.data_ = data_; } if (((from_bitField0_ & 0x00000040) != 0)) { result.id_ = id_; } if (((from_bitField0_ & 0x00000080) != 0)) { result.instantiationPolicy_ = instantiationPolicyBuilder_ == null ? instantiationPolicy_ : instantiationPolicyBuilder_.build(); to_bitField0_ |= 0x00000002; } result.bitField0_ |= to_bitField0_; } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof org.hyperledger.fabric.protos.peer.ChaincodeData) { return mergeFrom((org.hyperledger.fabric.protos.peer.ChaincodeData)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(org.hyperledger.fabric.protos.peer.ChaincodeData other) { if (other == org.hyperledger.fabric.protos.peer.ChaincodeData.getDefaultInstance()) return this; if (!other.getName().isEmpty()) { name_ = other.name_; bitField0_ |= 0x00000001; onChanged(); } if (!other.getVersion().isEmpty()) { version_ = other.version_; bitField0_ |= 0x00000002; onChanged(); } if (!other.getEscc().isEmpty()) { escc_ = other.escc_; bitField0_ |= 0x00000004; onChanged(); } if (!other.getVscc().isEmpty()) { vscc_ = other.vscc_; bitField0_ |= 0x00000008; onChanged(); } if (other.hasPolicy()) { mergePolicy(other.getPolicy()); } if (other.getData() != com.google.protobuf.ByteString.EMPTY) { setData(other.getData()); } if (other.getId() != com.google.protobuf.ByteString.EMPTY) { setId(other.getId()); } if (other.hasInstantiationPolicy()) { mergeInstantiationPolicy(other.getInstantiationPolicy()); } 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: { name_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000001; break; } // case 10 case 18: { version_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000002; break; } // case 18 case 26: { escc_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000004; break; } // case 26 case 34: { vscc_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000008; break; } // case 34 case 42: { input.readMessage( getPolicyFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000010; break; } // case 42 case 50: { data_ = input.readBytes(); bitField0_ |= 0x00000020; break; } // case 50 case 58: { id_ = input.readBytes(); bitField0_ |= 0x00000040; break; } // case 58 case 66: { input.readMessage( getInstantiationPolicyFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000080; break; } // case 66 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 name_ = ""; /** *
     * Name of the chaincode
     * 
* * string name = 1 [json_name = "name"]; * @return The name. */ public java.lang.String getName() { java.lang.Object ref = name_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); name_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * Name of the chaincode
     * 
* * string name = 1 [json_name = "name"]; * @return The bytes for name. */ public com.google.protobuf.ByteString getNameBytes() { java.lang.Object ref = name_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); name_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * Name of the chaincode
     * 
* * string name = 1 [json_name = "name"]; * @param value The name to set. * @return This builder for chaining. */ public Builder setName( java.lang.String value) { if (value == null) { throw new NullPointerException(); } name_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** *
     * Name of the chaincode
     * 
* * string name = 1 [json_name = "name"]; * @return This builder for chaining. */ public Builder clearName() { name_ = getDefaultInstance().getName(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** *
     * Name of the chaincode
     * 
* * string name = 1 [json_name = "name"]; * @param value The bytes for name to set. * @return This builder for chaining. */ public Builder setNameBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); name_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } private java.lang.Object version_ = ""; /** *
     * Version of the chaincode
     * 
* * string version = 2 [json_name = "version"]; * @return The version. */ public java.lang.String getVersion() { java.lang.Object ref = version_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); version_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * Version of the chaincode
     * 
* * string version = 2 [json_name = "version"]; * @return The bytes for version. */ public com.google.protobuf.ByteString getVersionBytes() { java.lang.Object ref = version_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); version_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * Version of the chaincode
     * 
* * string version = 2 [json_name = "version"]; * @param value The version to set. * @return This builder for chaining. */ public Builder setVersion( java.lang.String value) { if (value == null) { throw new NullPointerException(); } version_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     * Version of the chaincode
     * 
* * string version = 2 [json_name = "version"]; * @return This builder for chaining. */ public Builder clearVersion() { version_ = getDefaultInstance().getVersion(); bitField0_ = (bitField0_ & ~0x00000002); onChanged(); return this; } /** *
     * Version of the chaincode
     * 
* * string version = 2 [json_name = "version"]; * @param value The bytes for version to set. * @return This builder for chaining. */ public Builder setVersionBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); version_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } private java.lang.Object escc_ = ""; /** *
     * Escc for the chaincode instance
     * 
* * string escc = 3 [json_name = "escc"]; * @return The escc. */ public java.lang.String getEscc() { java.lang.Object ref = escc_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); escc_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * Escc for the chaincode instance
     * 
* * string escc = 3 [json_name = "escc"]; * @return The bytes for escc. */ public com.google.protobuf.ByteString getEsccBytes() { java.lang.Object ref = escc_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); escc_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * Escc for the chaincode instance
     * 
* * string escc = 3 [json_name = "escc"]; * @param value The escc to set. * @return This builder for chaining. */ public Builder setEscc( java.lang.String value) { if (value == null) { throw new NullPointerException(); } escc_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } /** *
     * Escc for the chaincode instance
     * 
* * string escc = 3 [json_name = "escc"]; * @return This builder for chaining. */ public Builder clearEscc() { escc_ = getDefaultInstance().getEscc(); bitField0_ = (bitField0_ & ~0x00000004); onChanged(); return this; } /** *
     * Escc for the chaincode instance
     * 
* * string escc = 3 [json_name = "escc"]; * @param value The bytes for escc to set. * @return This builder for chaining. */ public Builder setEsccBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); escc_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } private java.lang.Object vscc_ = ""; /** *
     * Vscc for the chaincode instance
     * 
* * string vscc = 4 [json_name = "vscc"]; * @return The vscc. */ public java.lang.String getVscc() { java.lang.Object ref = vscc_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); vscc_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * Vscc for the chaincode instance
     * 
* * string vscc = 4 [json_name = "vscc"]; * @return The bytes for vscc. */ public com.google.protobuf.ByteString getVsccBytes() { java.lang.Object ref = vscc_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); vscc_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * Vscc for the chaincode instance
     * 
* * string vscc = 4 [json_name = "vscc"]; * @param value The vscc to set. * @return This builder for chaining. */ public Builder setVscc( java.lang.String value) { if (value == null) { throw new NullPointerException(); } vscc_ = value; bitField0_ |= 0x00000008; onChanged(); return this; } /** *
     * Vscc for the chaincode instance
     * 
* * string vscc = 4 [json_name = "vscc"]; * @return This builder for chaining. */ public Builder clearVscc() { vscc_ = getDefaultInstance().getVscc(); bitField0_ = (bitField0_ & ~0x00000008); onChanged(); return this; } /** *
     * Vscc for the chaincode instance
     * 
* * string vscc = 4 [json_name = "vscc"]; * @param value The bytes for vscc to set. * @return This builder for chaining. */ public Builder setVsccBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); vscc_ = value; bitField0_ |= 0x00000008; onChanged(); return this; } private org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope policy_; private com.google.protobuf.SingleFieldBuilder< org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope, org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.Builder, org.hyperledger.fabric.protos.common.SignaturePolicyEnvelopeOrBuilder> policyBuilder_; /** *
     * Policy endorsement policy for the chaincode instance
     * 
* * .common.SignaturePolicyEnvelope policy = 5 [json_name = "policy"]; * @return Whether the policy field is set. */ public boolean hasPolicy() { return ((bitField0_ & 0x00000010) != 0); } /** *
     * Policy endorsement policy for the chaincode instance
     * 
* * .common.SignaturePolicyEnvelope policy = 5 [json_name = "policy"]; * @return The policy. */ public org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope getPolicy() { if (policyBuilder_ == null) { return policy_ == null ? org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.getDefaultInstance() : policy_; } else { return policyBuilder_.getMessage(); } } /** *
     * Policy endorsement policy for the chaincode instance
     * 
* * .common.SignaturePolicyEnvelope policy = 5 [json_name = "policy"]; */ public Builder setPolicy(org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope value) { if (policyBuilder_ == null) { if (value == null) { throw new NullPointerException(); } policy_ = value; } else { policyBuilder_.setMessage(value); } bitField0_ |= 0x00000010; onChanged(); return this; } /** *
     * Policy endorsement policy for the chaincode instance
     * 
* * .common.SignaturePolicyEnvelope policy = 5 [json_name = "policy"]; */ public Builder setPolicy( org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.Builder builderForValue) { if (policyBuilder_ == null) { policy_ = builderForValue.build(); } else { policyBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000010; onChanged(); return this; } /** *
     * Policy endorsement policy for the chaincode instance
     * 
* * .common.SignaturePolicyEnvelope policy = 5 [json_name = "policy"]; */ public Builder mergePolicy(org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope value) { if (policyBuilder_ == null) { if (((bitField0_ & 0x00000010) != 0) && policy_ != null && policy_ != org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.getDefaultInstance()) { getPolicyBuilder().mergeFrom(value); } else { policy_ = value; } } else { policyBuilder_.mergeFrom(value); } if (policy_ != null) { bitField0_ |= 0x00000010; onChanged(); } return this; } /** *
     * Policy endorsement policy for the chaincode instance
     * 
* * .common.SignaturePolicyEnvelope policy = 5 [json_name = "policy"]; */ public Builder clearPolicy() { bitField0_ = (bitField0_ & ~0x00000010); policy_ = null; if (policyBuilder_ != null) { policyBuilder_.dispose(); policyBuilder_ = null; } onChanged(); return this; } /** *
     * Policy endorsement policy for the chaincode instance
     * 
* * .common.SignaturePolicyEnvelope policy = 5 [json_name = "policy"]; */ public org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.Builder getPolicyBuilder() { bitField0_ |= 0x00000010; onChanged(); return getPolicyFieldBuilder().getBuilder(); } /** *
     * Policy endorsement policy for the chaincode instance
     * 
* * .common.SignaturePolicyEnvelope policy = 5 [json_name = "policy"]; */ public org.hyperledger.fabric.protos.common.SignaturePolicyEnvelopeOrBuilder getPolicyOrBuilder() { if (policyBuilder_ != null) { return policyBuilder_.getMessageOrBuilder(); } else { return policy_ == null ? org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.getDefaultInstance() : policy_; } } /** *
     * Policy endorsement policy for the chaincode instance
     * 
* * .common.SignaturePolicyEnvelope policy = 5 [json_name = "policy"]; */ private com.google.protobuf.SingleFieldBuilder< org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope, org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.Builder, org.hyperledger.fabric.protos.common.SignaturePolicyEnvelopeOrBuilder> getPolicyFieldBuilder() { if (policyBuilder_ == null) { policyBuilder_ = new com.google.protobuf.SingleFieldBuilder< org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope, org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.Builder, org.hyperledger.fabric.protos.common.SignaturePolicyEnvelopeOrBuilder>( getPolicy(), getParentForChildren(), isClean()); policy_ = null; } return policyBuilder_; } private com.google.protobuf.ByteString data_ = com.google.protobuf.ByteString.EMPTY; /** *
     * Data data specific to the package
     * 
* * bytes data = 6 [json_name = "data"]; * @return The data. */ @java.lang.Override public com.google.protobuf.ByteString getData() { return data_; } /** *
     * Data data specific to the package
     * 
* * bytes data = 6 [json_name = "data"]; * @param value The data to set. * @return This builder for chaining. */ public Builder setData(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } data_ = value; bitField0_ |= 0x00000020; onChanged(); return this; } /** *
     * Data data specific to the package
     * 
* * bytes data = 6 [json_name = "data"]; * @return This builder for chaining. */ public Builder clearData() { bitField0_ = (bitField0_ & ~0x00000020); data_ = getDefaultInstance().getData(); onChanged(); return this; } private com.google.protobuf.ByteString id_ = com.google.protobuf.ByteString.EMPTY; /** *
     * Id of the chaincode that's the unique fingerprint for the CC This is not
     * currently used anywhere but serves as a good eyecatcher
     * 
* * bytes id = 7 [json_name = "id"]; * @return The id. */ @java.lang.Override public com.google.protobuf.ByteString getId() { return id_; } /** *
     * Id of the chaincode that's the unique fingerprint for the CC This is not
     * currently used anywhere but serves as a good eyecatcher
     * 
* * bytes id = 7 [json_name = "id"]; * @param value The id to set. * @return This builder for chaining. */ public Builder setId(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } id_ = value; bitField0_ |= 0x00000040; onChanged(); return this; } /** *
     * Id of the chaincode that's the unique fingerprint for the CC This is not
     * currently used anywhere but serves as a good eyecatcher
     * 
* * bytes id = 7 [json_name = "id"]; * @return This builder for chaining. */ public Builder clearId() { bitField0_ = (bitField0_ & ~0x00000040); id_ = getDefaultInstance().getId(); onChanged(); return this; } private org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope instantiationPolicy_; private com.google.protobuf.SingleFieldBuilder< org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope, org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.Builder, org.hyperledger.fabric.protos.common.SignaturePolicyEnvelopeOrBuilder> instantiationPolicyBuilder_; /** *
     * InstantiationPolicy for the chaincode
     * 
* * .common.SignaturePolicyEnvelope instantiation_policy = 8 [json_name = "instantiationPolicy"]; * @return Whether the instantiationPolicy field is set. */ public boolean hasInstantiationPolicy() { return ((bitField0_ & 0x00000080) != 0); } /** *
     * InstantiationPolicy for the chaincode
     * 
* * .common.SignaturePolicyEnvelope instantiation_policy = 8 [json_name = "instantiationPolicy"]; * @return The instantiationPolicy. */ public org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope getInstantiationPolicy() { if (instantiationPolicyBuilder_ == null) { return instantiationPolicy_ == null ? org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.getDefaultInstance() : instantiationPolicy_; } else { return instantiationPolicyBuilder_.getMessage(); } } /** *
     * InstantiationPolicy for the chaincode
     * 
* * .common.SignaturePolicyEnvelope instantiation_policy = 8 [json_name = "instantiationPolicy"]; */ public Builder setInstantiationPolicy(org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope value) { if (instantiationPolicyBuilder_ == null) { if (value == null) { throw new NullPointerException(); } instantiationPolicy_ = value; } else { instantiationPolicyBuilder_.setMessage(value); } bitField0_ |= 0x00000080; onChanged(); return this; } /** *
     * InstantiationPolicy for the chaincode
     * 
* * .common.SignaturePolicyEnvelope instantiation_policy = 8 [json_name = "instantiationPolicy"]; */ public Builder setInstantiationPolicy( org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.Builder builderForValue) { if (instantiationPolicyBuilder_ == null) { instantiationPolicy_ = builderForValue.build(); } else { instantiationPolicyBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000080; onChanged(); return this; } /** *
     * InstantiationPolicy for the chaincode
     * 
* * .common.SignaturePolicyEnvelope instantiation_policy = 8 [json_name = "instantiationPolicy"]; */ public Builder mergeInstantiationPolicy(org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope value) { if (instantiationPolicyBuilder_ == null) { if (((bitField0_ & 0x00000080) != 0) && instantiationPolicy_ != null && instantiationPolicy_ != org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.getDefaultInstance()) { getInstantiationPolicyBuilder().mergeFrom(value); } else { instantiationPolicy_ = value; } } else { instantiationPolicyBuilder_.mergeFrom(value); } if (instantiationPolicy_ != null) { bitField0_ |= 0x00000080; onChanged(); } return this; } /** *
     * InstantiationPolicy for the chaincode
     * 
* * .common.SignaturePolicyEnvelope instantiation_policy = 8 [json_name = "instantiationPolicy"]; */ public Builder clearInstantiationPolicy() { bitField0_ = (bitField0_ & ~0x00000080); instantiationPolicy_ = null; if (instantiationPolicyBuilder_ != null) { instantiationPolicyBuilder_.dispose(); instantiationPolicyBuilder_ = null; } onChanged(); return this; } /** *
     * InstantiationPolicy for the chaincode
     * 
* * .common.SignaturePolicyEnvelope instantiation_policy = 8 [json_name = "instantiationPolicy"]; */ public org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.Builder getInstantiationPolicyBuilder() { bitField0_ |= 0x00000080; onChanged(); return getInstantiationPolicyFieldBuilder().getBuilder(); } /** *
     * InstantiationPolicy for the chaincode
     * 
* * .common.SignaturePolicyEnvelope instantiation_policy = 8 [json_name = "instantiationPolicy"]; */ public org.hyperledger.fabric.protos.common.SignaturePolicyEnvelopeOrBuilder getInstantiationPolicyOrBuilder() { if (instantiationPolicyBuilder_ != null) { return instantiationPolicyBuilder_.getMessageOrBuilder(); } else { return instantiationPolicy_ == null ? org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.getDefaultInstance() : instantiationPolicy_; } } /** *
     * InstantiationPolicy for the chaincode
     * 
* * .common.SignaturePolicyEnvelope instantiation_policy = 8 [json_name = "instantiationPolicy"]; */ private com.google.protobuf.SingleFieldBuilder< org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope, org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.Builder, org.hyperledger.fabric.protos.common.SignaturePolicyEnvelopeOrBuilder> getInstantiationPolicyFieldBuilder() { if (instantiationPolicyBuilder_ == null) { instantiationPolicyBuilder_ = new com.google.protobuf.SingleFieldBuilder< org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope, org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.Builder, org.hyperledger.fabric.protos.common.SignaturePolicyEnvelopeOrBuilder>( getInstantiationPolicy(), getParentForChildren(), isClean()); instantiationPolicy_ = null; } return instantiationPolicyBuilder_; } // @@protoc_insertion_point(builder_scope:protos.ChaincodeData) } // @@protoc_insertion_point(class_scope:protos.ChaincodeData) private static final org.hyperledger.fabric.protos.peer.ChaincodeData DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new org.hyperledger.fabric.protos.peer.ChaincodeData(); } public static org.hyperledger.fabric.protos.peer.ChaincodeData getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public ChaincodeData 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.ChaincodeData getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy