org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: peer/proposal.proto
// Protobuf Java Version: 4.28.2
package org.hyperledger.fabric.protos.peer;
/**
*
* ChaincodeHeaderExtension is the Header's extentions message to be used when
* the Header's type is CHAINCODE. This extensions is used to specify which
* chaincode to invoke and what should appear on the ledger.
*
*
* Protobuf type {@code protos.ChaincodeHeaderExtension}
*/
public final class ChaincodeHeaderExtension extends
com.google.protobuf.GeneratedMessage implements
// @@protoc_insertion_point(message_implements:protos.ChaincodeHeaderExtension)
ChaincodeHeaderExtensionOrBuilder {
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= */ "",
ChaincodeHeaderExtension.class.getName());
}
// Use ChaincodeHeaderExtension.newBuilder() to construct.
private ChaincodeHeaderExtension(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
}
private ChaincodeHeaderExtension() {
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.hyperledger.fabric.protos.peer.ProposalProto.internal_static_protos_ChaincodeHeaderExtension_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.hyperledger.fabric.protos.peer.ProposalProto.internal_static_protos_ChaincodeHeaderExtension_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension.class, org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension.Builder.class);
}
private int bitField0_;
public static final int CHAINCODE_ID_FIELD_NUMBER = 2;
private org.hyperledger.fabric.protos.peer.ChaincodeID chaincodeId_;
/**
*
* The ID of the chaincode to target.
*
*
* .protos.ChaincodeID chaincode_id = 2 [json_name = "chaincodeId"];
* @return Whether the chaincodeId field is set.
*/
@java.lang.Override
public boolean hasChaincodeId() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
* The ID of the chaincode to target.
*
*
* .protos.ChaincodeID chaincode_id = 2 [json_name = "chaincodeId"];
* @return The chaincodeId.
*/
@java.lang.Override
public org.hyperledger.fabric.protos.peer.ChaincodeID getChaincodeId() {
return chaincodeId_ == null ? org.hyperledger.fabric.protos.peer.ChaincodeID.getDefaultInstance() : chaincodeId_;
}
/**
*
* The ID of the chaincode to target.
*
*
* .protos.ChaincodeID chaincode_id = 2 [json_name = "chaincodeId"];
*/
@java.lang.Override
public org.hyperledger.fabric.protos.peer.ChaincodeIDOrBuilder getChaincodeIdOrBuilder() {
return chaincodeId_ == null ? org.hyperledger.fabric.protos.peer.ChaincodeID.getDefaultInstance() : chaincodeId_;
}
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 (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(2, getChaincodeId());
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getChaincodeId());
}
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.ChaincodeHeaderExtension)) {
return super.equals(obj);
}
org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension other = (org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension) obj;
if (hasChaincodeId() != other.hasChaincodeId()) return false;
if (hasChaincodeId()) {
if (!getChaincodeId()
.equals(other.getChaincodeId())) 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 (hasChaincodeId()) {
hash = (37 * hash) + CHAINCODE_ID_FIELD_NUMBER;
hash = (53 * hash) + getChaincodeId().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension 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.ChaincodeHeaderExtension parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension 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.ChaincodeHeaderExtension parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension 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.ChaincodeHeaderExtension parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input);
}
public static org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension 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.ChaincodeHeaderExtension parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseDelimitedWithIOException(PARSER, input);
}
public static org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension 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.ChaincodeHeaderExtension 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.ChaincodeHeaderExtension 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.ChaincodeHeaderExtension 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;
}
/**
*
* ChaincodeHeaderExtension is the Header's extentions message to be used when
* the Header's type is CHAINCODE. This extensions is used to specify which
* chaincode to invoke and what should appear on the ledger.
*
*
* Protobuf type {@code protos.ChaincodeHeaderExtension}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder implements
// @@protoc_insertion_point(builder_implements:protos.ChaincodeHeaderExtension)
org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtensionOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.hyperledger.fabric.protos.peer.ProposalProto.internal_static_protos_ChaincodeHeaderExtension_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.hyperledger.fabric.protos.peer.ProposalProto.internal_static_protos_ChaincodeHeaderExtension_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension.class, org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension.Builder.class);
}
// Construct using org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage
.alwaysUseFieldBuilders) {
getChaincodeIdFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
chaincodeId_ = null;
if (chaincodeIdBuilder_ != null) {
chaincodeIdBuilder_.dispose();
chaincodeIdBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.hyperledger.fabric.protos.peer.ProposalProto.internal_static_protos_ChaincodeHeaderExtension_descriptor;
}
@java.lang.Override
public org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension getDefaultInstanceForType() {
return org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension.getDefaultInstance();
}
@java.lang.Override
public org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension build() {
org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension buildPartial() {
org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension result = new org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.chaincodeId_ = chaincodeIdBuilder_ == null
? chaincodeId_
: chaincodeIdBuilder_.build();
to_bitField0_ |= 0x00000001;
}
result.bitField0_ |= to_bitField0_;
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension) {
return mergeFrom((org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension other) {
if (other == org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension.getDefaultInstance()) return this;
if (other.hasChaincodeId()) {
mergeChaincodeId(other.getChaincodeId());
}
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 18: {
input.readMessage(
getChaincodeIdFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 18
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 org.hyperledger.fabric.protos.peer.ChaincodeID chaincodeId_;
private com.google.protobuf.SingleFieldBuilder<
org.hyperledger.fabric.protos.peer.ChaincodeID, org.hyperledger.fabric.protos.peer.ChaincodeID.Builder, org.hyperledger.fabric.protos.peer.ChaincodeIDOrBuilder> chaincodeIdBuilder_;
/**
*
* The ID of the chaincode to target.
*
*
* .protos.ChaincodeID chaincode_id = 2 [json_name = "chaincodeId"];
* @return Whether the chaincodeId field is set.
*/
public boolean hasChaincodeId() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
* The ID of the chaincode to target.
*
*
* .protos.ChaincodeID chaincode_id = 2 [json_name = "chaincodeId"];
* @return The chaincodeId.
*/
public org.hyperledger.fabric.protos.peer.ChaincodeID getChaincodeId() {
if (chaincodeIdBuilder_ == null) {
return chaincodeId_ == null ? org.hyperledger.fabric.protos.peer.ChaincodeID.getDefaultInstance() : chaincodeId_;
} else {
return chaincodeIdBuilder_.getMessage();
}
}
/**
*
* The ID of the chaincode to target.
*
*
* .protos.ChaincodeID chaincode_id = 2 [json_name = "chaincodeId"];
*/
public Builder setChaincodeId(org.hyperledger.fabric.protos.peer.ChaincodeID value) {
if (chaincodeIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
chaincodeId_ = value;
} else {
chaincodeIdBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* The ID of the chaincode to target.
*
*
* .protos.ChaincodeID chaincode_id = 2 [json_name = "chaincodeId"];
*/
public Builder setChaincodeId(
org.hyperledger.fabric.protos.peer.ChaincodeID.Builder builderForValue) {
if (chaincodeIdBuilder_ == null) {
chaincodeId_ = builderForValue.build();
} else {
chaincodeIdBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* The ID of the chaincode to target.
*
*
* .protos.ChaincodeID chaincode_id = 2 [json_name = "chaincodeId"];
*/
public Builder mergeChaincodeId(org.hyperledger.fabric.protos.peer.ChaincodeID value) {
if (chaincodeIdBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0) &&
chaincodeId_ != null &&
chaincodeId_ != org.hyperledger.fabric.protos.peer.ChaincodeID.getDefaultInstance()) {
getChaincodeIdBuilder().mergeFrom(value);
} else {
chaincodeId_ = value;
}
} else {
chaincodeIdBuilder_.mergeFrom(value);
}
if (chaincodeId_ != null) {
bitField0_ |= 0x00000001;
onChanged();
}
return this;
}
/**
*
* The ID of the chaincode to target.
*
*
* .protos.ChaincodeID chaincode_id = 2 [json_name = "chaincodeId"];
*/
public Builder clearChaincodeId() {
bitField0_ = (bitField0_ & ~0x00000001);
chaincodeId_ = null;
if (chaincodeIdBuilder_ != null) {
chaincodeIdBuilder_.dispose();
chaincodeIdBuilder_ = null;
}
onChanged();
return this;
}
/**
*
* The ID of the chaincode to target.
*
*
* .protos.ChaincodeID chaincode_id = 2 [json_name = "chaincodeId"];
*/
public org.hyperledger.fabric.protos.peer.ChaincodeID.Builder getChaincodeIdBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getChaincodeIdFieldBuilder().getBuilder();
}
/**
*
* The ID of the chaincode to target.
*
*
* .protos.ChaincodeID chaincode_id = 2 [json_name = "chaincodeId"];
*/
public org.hyperledger.fabric.protos.peer.ChaincodeIDOrBuilder getChaincodeIdOrBuilder() {
if (chaincodeIdBuilder_ != null) {
return chaincodeIdBuilder_.getMessageOrBuilder();
} else {
return chaincodeId_ == null ?
org.hyperledger.fabric.protos.peer.ChaincodeID.getDefaultInstance() : chaincodeId_;
}
}
/**
*
* The ID of the chaincode to target.
*
*
* .protos.ChaincodeID chaincode_id = 2 [json_name = "chaincodeId"];
*/
private com.google.protobuf.SingleFieldBuilder<
org.hyperledger.fabric.protos.peer.ChaincodeID, org.hyperledger.fabric.protos.peer.ChaincodeID.Builder, org.hyperledger.fabric.protos.peer.ChaincodeIDOrBuilder>
getChaincodeIdFieldBuilder() {
if (chaincodeIdBuilder_ == null) {
chaincodeIdBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.hyperledger.fabric.protos.peer.ChaincodeID, org.hyperledger.fabric.protos.peer.ChaincodeID.Builder, org.hyperledger.fabric.protos.peer.ChaincodeIDOrBuilder>(
getChaincodeId(),
getParentForChildren(),
isClean());
chaincodeId_ = null;
}
return chaincodeIdBuilder_;
}
// @@protoc_insertion_point(builder_scope:protos.ChaincodeHeaderExtension)
}
// @@protoc_insertion_point(class_scope:protos.ChaincodeHeaderExtension)
private static final org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension();
}
public static org.hyperledger.fabric.protos.peer.ChaincodeHeaderExtension getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ChaincodeHeaderExtension 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.ChaincodeHeaderExtension getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy