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

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

// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: peer/query.proto

package org.hyperledger.fabric.protos.peer;

/**
 * 
 * ChaincodeInfo contains general information about an installed/instantiated
 * chaincode
 * 
* * Protobuf type {@code protos.ChaincodeInfo} */ public final class ChaincodeInfo extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:protos.ChaincodeInfo) ChaincodeInfoOrBuilder { private static final long serialVersionUID = 0L; // Use ChaincodeInfo.newBuilder() to construct. private ChaincodeInfo(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private ChaincodeInfo() { name_ = ""; version_ = ""; path_ = ""; input_ = ""; escc_ = ""; vscc_ = ""; id_ = com.google.protobuf.ByteString.EMPTY; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new ChaincodeInfo(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private ChaincodeInfo( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } com.google.protobuf.UnknownFieldSet.Builder unknownFields = com.google.protobuf.UnknownFieldSet.newBuilder(); try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 10: { java.lang.String s = input.readStringRequireUtf8(); name_ = s; break; } case 18: { java.lang.String s = input.readStringRequireUtf8(); version_ = s; break; } case 26: { java.lang.String s = input.readStringRequireUtf8(); path_ = s; break; } case 34: { java.lang.String s = input.readStringRequireUtf8(); input_ = s; break; } case 42: { java.lang.String s = input.readStringRequireUtf8(); escc_ = s; break; } case 50: { java.lang.String s = input.readStringRequireUtf8(); vscc_ = s; break; } case 58: { id_ = input.readBytes(); break; } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.hyperledger.fabric.protos.peer.QueryProto.internal_static_protos_ChaincodeInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return org.hyperledger.fabric.protos.peer.QueryProto.internal_static_protos_ChaincodeInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( org.hyperledger.fabric.protos.peer.ChaincodeInfo.class, org.hyperledger.fabric.protos.peer.ChaincodeInfo.Builder.class); } public static final int NAME_FIELD_NUMBER = 1; private volatile java.lang.Object name_; /** * 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; } } /** * 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; private volatile java.lang.Object version_; /** * 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; } } /** * 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 PATH_FIELD_NUMBER = 3; private volatile java.lang.Object path_; /** *
   * the path as specified by the install/instantiate transaction
   * 
* * string path = 3 [json_name = "path"]; * @return The path. */ @java.lang.Override public java.lang.String getPath() { java.lang.Object ref = path_; 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(); path_ = s; return s; } } /** *
   * the path as specified by the install/instantiate transaction
   * 
* * string path = 3 [json_name = "path"]; * @return The bytes for path. */ @java.lang.Override public com.google.protobuf.ByteString getPathBytes() { java.lang.Object ref = path_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); path_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int INPUT_FIELD_NUMBER = 4; private volatile java.lang.Object input_; /** *
   * the chaincode function upon instantiation and its arguments. This will be
   * blank if the query is returning information about installed chaincodes.
   * 
* * string input = 4 [json_name = "input"]; * @return The input. */ @java.lang.Override public java.lang.String getInput() { java.lang.Object ref = input_; 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(); input_ = s; return s; } } /** *
   * the chaincode function upon instantiation and its arguments. This will be
   * blank if the query is returning information about installed chaincodes.
   * 
* * string input = 4 [json_name = "input"]; * @return The bytes for input. */ @java.lang.Override public com.google.protobuf.ByteString getInputBytes() { java.lang.Object ref = input_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); input_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int ESCC_FIELD_NUMBER = 5; private volatile java.lang.Object escc_; /** *
   * the name of the ESCC for this chaincode. This will be
   * blank if the query is returning information about installed chaincodes.
   * 
* * string escc = 5 [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; } } /** *
   * the name of the ESCC for this chaincode. This will be
   * blank if the query is returning information about installed chaincodes.
   * 
* * string escc = 5 [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 = 6; private volatile java.lang.Object vscc_; /** *
   * the name of the VSCC for this chaincode. This will be
   * blank if the query is returning information about installed chaincodes.
   * 
* * string vscc = 6 [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; } } /** *
   * the name of the VSCC for this chaincode. This will be
   * blank if the query is returning information about installed chaincodes.
   * 
* * string vscc = 6 [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 ID_FIELD_NUMBER = 7; private com.google.protobuf.ByteString id_; /** *
   * the chaincode unique id.
   * computed as: H(
   *                H(name || version) ||
   *                H(CodePackage)
   *              )
   * 
* * bytes id = 7 [json_name = "id"]; * @return The id. */ @java.lang.Override public com.google.protobuf.ByteString getId() { return id_; } 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.GeneratedMessageV3.isStringEmpty(name_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(version_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, version_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(path_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, path_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(input_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 4, input_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(escc_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 5, escc_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(vscc_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 6, vscc_); } if (!id_.isEmpty()) { output.writeBytes(7, id_); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(version_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, version_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(path_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, path_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(input_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, input_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(escc_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, escc_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(vscc_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, vscc_); } if (!id_.isEmpty()) { size += com.google.protobuf.CodedOutputStream .computeBytesSize(7, id_); } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof org.hyperledger.fabric.protos.peer.ChaincodeInfo)) { return super.equals(obj); } org.hyperledger.fabric.protos.peer.ChaincodeInfo other = (org.hyperledger.fabric.protos.peer.ChaincodeInfo) obj; if (!getName() .equals(other.getName())) return false; if (!getVersion() .equals(other.getVersion())) return false; if (!getPath() .equals(other.getPath())) return false; if (!getInput() .equals(other.getInput())) return false; if (!getEscc() .equals(other.getEscc())) return false; if (!getVscc() .equals(other.getVscc())) return false; if (!getId() .equals(other.getId())) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + NAME_FIELD_NUMBER; hash = (53 * hash) + getName().hashCode(); hash = (37 * hash) + VERSION_FIELD_NUMBER; hash = (53 * hash) + getVersion().hashCode(); hash = (37 * hash) + PATH_FIELD_NUMBER; hash = (53 * hash) + getPath().hashCode(); hash = (37 * hash) + INPUT_FIELD_NUMBER; hash = (53 * hash) + getInput().hashCode(); hash = (37 * hash) + ESCC_FIELD_NUMBER; hash = (53 * hash) + getEscc().hashCode(); hash = (37 * hash) + VSCC_FIELD_NUMBER; hash = (53 * hash) + getVscc().hashCode(); hash = (37 * hash) + ID_FIELD_NUMBER; hash = (53 * hash) + getId().hashCode(); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static org.hyperledger.fabric.protos.peer.ChaincodeInfo parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.hyperledger.fabric.protos.peer.ChaincodeInfo 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.ChaincodeInfo parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.hyperledger.fabric.protos.peer.ChaincodeInfo 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.ChaincodeInfo parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.hyperledger.fabric.protos.peer.ChaincodeInfo 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.ChaincodeInfo parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.hyperledger.fabric.protos.peer.ChaincodeInfo parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static org.hyperledger.fabric.protos.peer.ChaincodeInfo parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static org.hyperledger.fabric.protos.peer.ChaincodeInfo parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static org.hyperledger.fabric.protos.peer.ChaincodeInfo parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.hyperledger.fabric.protos.peer.ChaincodeInfo parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(org.hyperledger.fabric.protos.peer.ChaincodeInfo prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @java.lang.Override public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override protected Builder newBuilderForType( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** *
   * ChaincodeInfo contains general information about an installed/instantiated
   * chaincode
   * 
* * Protobuf type {@code protos.ChaincodeInfo} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:protos.ChaincodeInfo) org.hyperledger.fabric.protos.peer.ChaincodeInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.hyperledger.fabric.protos.peer.QueryProto.internal_static_protos_ChaincodeInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return org.hyperledger.fabric.protos.peer.QueryProto.internal_static_protos_ChaincodeInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( org.hyperledger.fabric.protos.peer.ChaincodeInfo.class, org.hyperledger.fabric.protos.peer.ChaincodeInfo.Builder.class); } // Construct using org.hyperledger.fabric.protos.peer.ChaincodeInfo.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { } } @java.lang.Override public Builder clear() { super.clear(); name_ = ""; version_ = ""; path_ = ""; input_ = ""; escc_ = ""; vscc_ = ""; id_ = com.google.protobuf.ByteString.EMPTY; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return org.hyperledger.fabric.protos.peer.QueryProto.internal_static_protos_ChaincodeInfo_descriptor; } @java.lang.Override public org.hyperledger.fabric.protos.peer.ChaincodeInfo getDefaultInstanceForType() { return org.hyperledger.fabric.protos.peer.ChaincodeInfo.getDefaultInstance(); } @java.lang.Override public org.hyperledger.fabric.protos.peer.ChaincodeInfo build() { org.hyperledger.fabric.protos.peer.ChaincodeInfo result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public org.hyperledger.fabric.protos.peer.ChaincodeInfo buildPartial() { org.hyperledger.fabric.protos.peer.ChaincodeInfo result = new org.hyperledger.fabric.protos.peer.ChaincodeInfo(this); result.name_ = name_; result.version_ = version_; result.path_ = path_; result.input_ = input_; result.escc_ = escc_; result.vscc_ = vscc_; result.id_ = id_; onBuilt(); return result; } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof org.hyperledger.fabric.protos.peer.ChaincodeInfo) { return mergeFrom((org.hyperledger.fabric.protos.peer.ChaincodeInfo)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(org.hyperledger.fabric.protos.peer.ChaincodeInfo other) { if (other == org.hyperledger.fabric.protos.peer.ChaincodeInfo.getDefaultInstance()) return this; if (!other.getName().isEmpty()) { name_ = other.name_; onChanged(); } if (!other.getVersion().isEmpty()) { version_ = other.version_; onChanged(); } if (!other.getPath().isEmpty()) { path_ = other.path_; onChanged(); } if (!other.getInput().isEmpty()) { input_ = other.input_; onChanged(); } if (!other.getEscc().isEmpty()) { escc_ = other.escc_; onChanged(); } if (!other.getVscc().isEmpty()) { vscc_ = other.vscc_; onChanged(); } if (other.getId() != com.google.protobuf.ByteString.EMPTY) { setId(other.getId()); } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { org.hyperledger.fabric.protos.peer.ChaincodeInfo parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (org.hyperledger.fabric.protos.peer.ChaincodeInfo) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private java.lang.Object name_ = ""; /** * 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; } } /** * 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; } } /** * 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; onChanged(); return this; } /** * string name = 1 [json_name = "name"]; * @return This builder for chaining. */ public Builder clearName() { name_ = getDefaultInstance().getName(); onChanged(); return this; } /** * 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; onChanged(); return this; } private java.lang.Object version_ = ""; /** * 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; } } /** * 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; } } /** * 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; onChanged(); return this; } /** * string version = 2 [json_name = "version"]; * @return This builder for chaining. */ public Builder clearVersion() { version_ = getDefaultInstance().getVersion(); onChanged(); return this; } /** * 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; onChanged(); return this; } private java.lang.Object path_ = ""; /** *
     * the path as specified by the install/instantiate transaction
     * 
* * string path = 3 [json_name = "path"]; * @return The path. */ public java.lang.String getPath() { java.lang.Object ref = path_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); path_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * the path as specified by the install/instantiate transaction
     * 
* * string path = 3 [json_name = "path"]; * @return The bytes for path. */ public com.google.protobuf.ByteString getPathBytes() { java.lang.Object ref = path_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); path_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * the path as specified by the install/instantiate transaction
     * 
* * string path = 3 [json_name = "path"]; * @param value The path to set. * @return This builder for chaining. */ public Builder setPath( java.lang.String value) { if (value == null) { throw new NullPointerException(); } path_ = value; onChanged(); return this; } /** *
     * the path as specified by the install/instantiate transaction
     * 
* * string path = 3 [json_name = "path"]; * @return This builder for chaining. */ public Builder clearPath() { path_ = getDefaultInstance().getPath(); onChanged(); return this; } /** *
     * the path as specified by the install/instantiate transaction
     * 
* * string path = 3 [json_name = "path"]; * @param value The bytes for path to set. * @return This builder for chaining. */ public Builder setPathBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); path_ = value; onChanged(); return this; } private java.lang.Object input_ = ""; /** *
     * the chaincode function upon instantiation and its arguments. This will be
     * blank if the query is returning information about installed chaincodes.
     * 
* * string input = 4 [json_name = "input"]; * @return The input. */ public java.lang.String getInput() { java.lang.Object ref = input_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); input_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * the chaincode function upon instantiation and its arguments. This will be
     * blank if the query is returning information about installed chaincodes.
     * 
* * string input = 4 [json_name = "input"]; * @return The bytes for input. */ public com.google.protobuf.ByteString getInputBytes() { java.lang.Object ref = input_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); input_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * the chaincode function upon instantiation and its arguments. This will be
     * blank if the query is returning information about installed chaincodes.
     * 
* * string input = 4 [json_name = "input"]; * @param value The input to set. * @return This builder for chaining. */ public Builder setInput( java.lang.String value) { if (value == null) { throw new NullPointerException(); } input_ = value; onChanged(); return this; } /** *
     * the chaincode function upon instantiation and its arguments. This will be
     * blank if the query is returning information about installed chaincodes.
     * 
* * string input = 4 [json_name = "input"]; * @return This builder for chaining. */ public Builder clearInput() { input_ = getDefaultInstance().getInput(); onChanged(); return this; } /** *
     * the chaincode function upon instantiation and its arguments. This will be
     * blank if the query is returning information about installed chaincodes.
     * 
* * string input = 4 [json_name = "input"]; * @param value The bytes for input to set. * @return This builder for chaining. */ public Builder setInputBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); input_ = value; onChanged(); return this; } private java.lang.Object escc_ = ""; /** *
     * the name of the ESCC for this chaincode. This will be
     * blank if the query is returning information about installed chaincodes.
     * 
* * string escc = 5 [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; } } /** *
     * the name of the ESCC for this chaincode. This will be
     * blank if the query is returning information about installed chaincodes.
     * 
* * string escc = 5 [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; } } /** *
     * the name of the ESCC for this chaincode. This will be
     * blank if the query is returning information about installed chaincodes.
     * 
* * string escc = 5 [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; onChanged(); return this; } /** *
     * the name of the ESCC for this chaincode. This will be
     * blank if the query is returning information about installed chaincodes.
     * 
* * string escc = 5 [json_name = "escc"]; * @return This builder for chaining. */ public Builder clearEscc() { escc_ = getDefaultInstance().getEscc(); onChanged(); return this; } /** *
     * the name of the ESCC for this chaincode. This will be
     * blank if the query is returning information about installed chaincodes.
     * 
* * string escc = 5 [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; onChanged(); return this; } private java.lang.Object vscc_ = ""; /** *
     * the name of the VSCC for this chaincode. This will be
     * blank if the query is returning information about installed chaincodes.
     * 
* * string vscc = 6 [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; } } /** *
     * the name of the VSCC for this chaincode. This will be
     * blank if the query is returning information about installed chaincodes.
     * 
* * string vscc = 6 [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; } } /** *
     * the name of the VSCC for this chaincode. This will be
     * blank if the query is returning information about installed chaincodes.
     * 
* * string vscc = 6 [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; onChanged(); return this; } /** *
     * the name of the VSCC for this chaincode. This will be
     * blank if the query is returning information about installed chaincodes.
     * 
* * string vscc = 6 [json_name = "vscc"]; * @return This builder for chaining. */ public Builder clearVscc() { vscc_ = getDefaultInstance().getVscc(); onChanged(); return this; } /** *
     * the name of the VSCC for this chaincode. This will be
     * blank if the query is returning information about installed chaincodes.
     * 
* * string vscc = 6 [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; onChanged(); return this; } private com.google.protobuf.ByteString id_ = com.google.protobuf.ByteString.EMPTY; /** *
     * the chaincode unique id.
     * computed as: H(
     *                H(name || version) ||
     *                H(CodePackage)
     *              )
     * 
* * bytes id = 7 [json_name = "id"]; * @return The id. */ @java.lang.Override public com.google.protobuf.ByteString getId() { return id_; } /** *
     * the chaincode unique id.
     * computed as: H(
     *                H(name || version) ||
     *                H(CodePackage)
     *              )
     * 
* * 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; onChanged(); return this; } /** *
     * the chaincode unique id.
     * computed as: H(
     *                H(name || version) ||
     *                H(CodePackage)
     *              )
     * 
* * bytes id = 7 [json_name = "id"]; * @return This builder for chaining. */ public Builder clearId() { id_ = getDefaultInstance().getId(); onChanged(); return this; } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @java.lang.Override public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:protos.ChaincodeInfo) } // @@protoc_insertion_point(class_scope:protos.ChaincodeInfo) private static final org.hyperledger.fabric.protos.peer.ChaincodeInfo DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new org.hyperledger.fabric.protos.peer.ChaincodeInfo(); } public static org.hyperledger.fabric.protos.peer.ChaincodeInfo getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public ChaincodeInfo parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new ChaincodeInfo(input, extensionRegistry); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public org.hyperledger.fabric.protos.peer.ChaincodeInfo getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy