org.hyperledger.fabric.protos.common.ConfigEnvelope Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: common/configtx.proto
// Protobuf Java Version: 4.28.2
package org.hyperledger.fabric.protos.common;
/**
*
* ConfigEnvelope is designed to contain _all_ configuration for a chain with no dependency
* on previous configuration transactions.
*
* It is generated with the following scheme:
* 1. Retrieve the existing configuration
* 2. Note the config properties (ConfigValue, ConfigPolicy, ConfigGroup) to be modified
* 3. Add any intermediate ConfigGroups to the ConfigUpdate.read_set (sparsely)
* 4. Add any additional desired dependencies to ConfigUpdate.read_set (sparsely)
* 5. Modify the config properties, incrementing each version by 1, set them in the ConfigUpdate.write_set
* Note: any element not modified but specified should already be in the read_set, so may be specified sparsely
* 6. Create ConfigUpdate message and marshal it into ConfigUpdateEnvelope.update and encode the required signatures
* a) Each signature is of type ConfigSignature
* b) The ConfigSignature signature is over the concatenation of signature_header and the ConfigUpdate bytes (which includes a ChainHeader)
* 5. Submit new Config for ordering in Envelope signed by submitter
* a) The Envelope Payload has data set to the marshaled ConfigEnvelope
* b) The Envelope Payload has a header of type Header.Type.CONFIG_UPDATE
*
* The configuration manager will verify:
* 1. All items in the read_set exist at the read versions
* 2. All items in the write_set at a different version than, or not in, the read_set have been appropriately signed according to their mod_policy
* 3. The new configuration satisfies the ConfigSchema
*
*
* Protobuf type {@code common.ConfigEnvelope}
*/
public final class ConfigEnvelope extends
com.google.protobuf.GeneratedMessage implements
// @@protoc_insertion_point(message_implements:common.ConfigEnvelope)
ConfigEnvelopeOrBuilder {
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= */ "",
ConfigEnvelope.class.getName());
}
// Use ConfigEnvelope.newBuilder() to construct.
private ConfigEnvelope(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
}
private ConfigEnvelope() {
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.hyperledger.fabric.protos.common.ConfigTxProto.internal_static_common_ConfigEnvelope_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.hyperledger.fabric.protos.common.ConfigTxProto.internal_static_common_ConfigEnvelope_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.hyperledger.fabric.protos.common.ConfigEnvelope.class, org.hyperledger.fabric.protos.common.ConfigEnvelope.Builder.class);
}
private int bitField0_;
public static final int CONFIG_FIELD_NUMBER = 1;
private org.hyperledger.fabric.protos.common.Config config_;
/**
*
* A marshaled Config structure
*
*
* .common.Config config = 1 [json_name = "config"];
* @return Whether the config field is set.
*/
@java.lang.Override
public boolean hasConfig() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
* A marshaled Config structure
*
*
* .common.Config config = 1 [json_name = "config"];
* @return The config.
*/
@java.lang.Override
public org.hyperledger.fabric.protos.common.Config getConfig() {
return config_ == null ? org.hyperledger.fabric.protos.common.Config.getDefaultInstance() : config_;
}
/**
*
* A marshaled Config structure
*
*
* .common.Config config = 1 [json_name = "config"];
*/
@java.lang.Override
public org.hyperledger.fabric.protos.common.ConfigOrBuilder getConfigOrBuilder() {
return config_ == null ? org.hyperledger.fabric.protos.common.Config.getDefaultInstance() : config_;
}
public static final int LAST_UPDATE_FIELD_NUMBER = 2;
private org.hyperledger.fabric.protos.common.Envelope lastUpdate_;
/**
*
* The last CONFIG_UPDATE message which generated this current configuration
*
*
* .common.Envelope last_update = 2 [json_name = "lastUpdate"];
* @return Whether the lastUpdate field is set.
*/
@java.lang.Override
public boolean hasLastUpdate() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
* The last CONFIG_UPDATE message which generated this current configuration
*
*
* .common.Envelope last_update = 2 [json_name = "lastUpdate"];
* @return The lastUpdate.
*/
@java.lang.Override
public org.hyperledger.fabric.protos.common.Envelope getLastUpdate() {
return lastUpdate_ == null ? org.hyperledger.fabric.protos.common.Envelope.getDefaultInstance() : lastUpdate_;
}
/**
*
* The last CONFIG_UPDATE message which generated this current configuration
*
*
* .common.Envelope last_update = 2 [json_name = "lastUpdate"];
*/
@java.lang.Override
public org.hyperledger.fabric.protos.common.EnvelopeOrBuilder getLastUpdateOrBuilder() {
return lastUpdate_ == null ? org.hyperledger.fabric.protos.common.Envelope.getDefaultInstance() : lastUpdate_;
}
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(1, getConfig());
}
if (((bitField0_ & 0x00000002) != 0)) {
output.writeMessage(2, getLastUpdate());
}
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(1, getConfig());
}
if (((bitField0_ & 0x00000002) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getLastUpdate());
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.hyperledger.fabric.protos.common.ConfigEnvelope)) {
return super.equals(obj);
}
org.hyperledger.fabric.protos.common.ConfigEnvelope other = (org.hyperledger.fabric.protos.common.ConfigEnvelope) obj;
if (hasConfig() != other.hasConfig()) return false;
if (hasConfig()) {
if (!getConfig()
.equals(other.getConfig())) return false;
}
if (hasLastUpdate() != other.hasLastUpdate()) return false;
if (hasLastUpdate()) {
if (!getLastUpdate()
.equals(other.getLastUpdate())) 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 (hasConfig()) {
hash = (37 * hash) + CONFIG_FIELD_NUMBER;
hash = (53 * hash) + getConfig().hashCode();
}
if (hasLastUpdate()) {
hash = (37 * hash) + LAST_UPDATE_FIELD_NUMBER;
hash = (53 * hash) + getLastUpdate().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.hyperledger.fabric.protos.common.ConfigEnvelope parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.common.ConfigEnvelope parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.hyperledger.fabric.protos.common.ConfigEnvelope parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.common.ConfigEnvelope parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.hyperledger.fabric.protos.common.ConfigEnvelope parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.common.ConfigEnvelope parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.hyperledger.fabric.protos.common.ConfigEnvelope parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input);
}
public static org.hyperledger.fabric.protos.common.ConfigEnvelope parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static org.hyperledger.fabric.protos.common.ConfigEnvelope parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseDelimitedWithIOException(PARSER, input);
}
public static org.hyperledger.fabric.protos.common.ConfigEnvelope parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static org.hyperledger.fabric.protos.common.ConfigEnvelope parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input);
}
public static org.hyperledger.fabric.protos.common.ConfigEnvelope parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(org.hyperledger.fabric.protos.common.ConfigEnvelope 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;
}
/**
*
* ConfigEnvelope is designed to contain _all_ configuration for a chain with no dependency
* on previous configuration transactions.
*
* It is generated with the following scheme:
* 1. Retrieve the existing configuration
* 2. Note the config properties (ConfigValue, ConfigPolicy, ConfigGroup) to be modified
* 3. Add any intermediate ConfigGroups to the ConfigUpdate.read_set (sparsely)
* 4. Add any additional desired dependencies to ConfigUpdate.read_set (sparsely)
* 5. Modify the config properties, incrementing each version by 1, set them in the ConfigUpdate.write_set
* Note: any element not modified but specified should already be in the read_set, so may be specified sparsely
* 6. Create ConfigUpdate message and marshal it into ConfigUpdateEnvelope.update and encode the required signatures
* a) Each signature is of type ConfigSignature
* b) The ConfigSignature signature is over the concatenation of signature_header and the ConfigUpdate bytes (which includes a ChainHeader)
* 5. Submit new Config for ordering in Envelope signed by submitter
* a) The Envelope Payload has data set to the marshaled ConfigEnvelope
* b) The Envelope Payload has a header of type Header.Type.CONFIG_UPDATE
*
* The configuration manager will verify:
* 1. All items in the read_set exist at the read versions
* 2. All items in the write_set at a different version than, or not in, the read_set have been appropriately signed according to their mod_policy
* 3. The new configuration satisfies the ConfigSchema
*
*
* Protobuf type {@code common.ConfigEnvelope}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder implements
// @@protoc_insertion_point(builder_implements:common.ConfigEnvelope)
org.hyperledger.fabric.protos.common.ConfigEnvelopeOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.hyperledger.fabric.protos.common.ConfigTxProto.internal_static_common_ConfigEnvelope_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.hyperledger.fabric.protos.common.ConfigTxProto.internal_static_common_ConfigEnvelope_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.hyperledger.fabric.protos.common.ConfigEnvelope.class, org.hyperledger.fabric.protos.common.ConfigEnvelope.Builder.class);
}
// Construct using org.hyperledger.fabric.protos.common.ConfigEnvelope.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage
.alwaysUseFieldBuilders) {
getConfigFieldBuilder();
getLastUpdateFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
config_ = null;
if (configBuilder_ != null) {
configBuilder_.dispose();
configBuilder_ = null;
}
lastUpdate_ = null;
if (lastUpdateBuilder_ != null) {
lastUpdateBuilder_.dispose();
lastUpdateBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.hyperledger.fabric.protos.common.ConfigTxProto.internal_static_common_ConfigEnvelope_descriptor;
}
@java.lang.Override
public org.hyperledger.fabric.protos.common.ConfigEnvelope getDefaultInstanceForType() {
return org.hyperledger.fabric.protos.common.ConfigEnvelope.getDefaultInstance();
}
@java.lang.Override
public org.hyperledger.fabric.protos.common.ConfigEnvelope build() {
org.hyperledger.fabric.protos.common.ConfigEnvelope result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public org.hyperledger.fabric.protos.common.ConfigEnvelope buildPartial() {
org.hyperledger.fabric.protos.common.ConfigEnvelope result = new org.hyperledger.fabric.protos.common.ConfigEnvelope(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(org.hyperledger.fabric.protos.common.ConfigEnvelope result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.config_ = configBuilder_ == null
? config_
: configBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.lastUpdate_ = lastUpdateBuilder_ == null
? lastUpdate_
: lastUpdateBuilder_.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.common.ConfigEnvelope) {
return mergeFrom((org.hyperledger.fabric.protos.common.ConfigEnvelope)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.hyperledger.fabric.protos.common.ConfigEnvelope other) {
if (other == org.hyperledger.fabric.protos.common.ConfigEnvelope.getDefaultInstance()) return this;
if (other.hasConfig()) {
mergeConfig(other.getConfig());
}
if (other.hasLastUpdate()) {
mergeLastUpdate(other.getLastUpdate());
}
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: {
input.readMessage(
getConfigFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
input.readMessage(
getLastUpdateFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000002;
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.common.Config config_;
private com.google.protobuf.SingleFieldBuilder<
org.hyperledger.fabric.protos.common.Config, org.hyperledger.fabric.protos.common.Config.Builder, org.hyperledger.fabric.protos.common.ConfigOrBuilder> configBuilder_;
/**
*
* A marshaled Config structure
*
*
* .common.Config config = 1 [json_name = "config"];
* @return Whether the config field is set.
*/
public boolean hasConfig() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
* A marshaled Config structure
*
*
* .common.Config config = 1 [json_name = "config"];
* @return The config.
*/
public org.hyperledger.fabric.protos.common.Config getConfig() {
if (configBuilder_ == null) {
return config_ == null ? org.hyperledger.fabric.protos.common.Config.getDefaultInstance() : config_;
} else {
return configBuilder_.getMessage();
}
}
/**
*
* A marshaled Config structure
*
*
* .common.Config config = 1 [json_name = "config"];
*/
public Builder setConfig(org.hyperledger.fabric.protos.common.Config value) {
if (configBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
config_ = value;
} else {
configBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* A marshaled Config structure
*
*
* .common.Config config = 1 [json_name = "config"];
*/
public Builder setConfig(
org.hyperledger.fabric.protos.common.Config.Builder builderForValue) {
if (configBuilder_ == null) {
config_ = builderForValue.build();
} else {
configBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* A marshaled Config structure
*
*
* .common.Config config = 1 [json_name = "config"];
*/
public Builder mergeConfig(org.hyperledger.fabric.protos.common.Config value) {
if (configBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0) &&
config_ != null &&
config_ != org.hyperledger.fabric.protos.common.Config.getDefaultInstance()) {
getConfigBuilder().mergeFrom(value);
} else {
config_ = value;
}
} else {
configBuilder_.mergeFrom(value);
}
if (config_ != null) {
bitField0_ |= 0x00000001;
onChanged();
}
return this;
}
/**
*
* A marshaled Config structure
*
*
* .common.Config config = 1 [json_name = "config"];
*/
public Builder clearConfig() {
bitField0_ = (bitField0_ & ~0x00000001);
config_ = null;
if (configBuilder_ != null) {
configBuilder_.dispose();
configBuilder_ = null;
}
onChanged();
return this;
}
/**
*
* A marshaled Config structure
*
*
* .common.Config config = 1 [json_name = "config"];
*/
public org.hyperledger.fabric.protos.common.Config.Builder getConfigBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getConfigFieldBuilder().getBuilder();
}
/**
*
* A marshaled Config structure
*
*
* .common.Config config = 1 [json_name = "config"];
*/
public org.hyperledger.fabric.protos.common.ConfigOrBuilder getConfigOrBuilder() {
if (configBuilder_ != null) {
return configBuilder_.getMessageOrBuilder();
} else {
return config_ == null ?
org.hyperledger.fabric.protos.common.Config.getDefaultInstance() : config_;
}
}
/**
*
* A marshaled Config structure
*
*
* .common.Config config = 1 [json_name = "config"];
*/
private com.google.protobuf.SingleFieldBuilder<
org.hyperledger.fabric.protos.common.Config, org.hyperledger.fabric.protos.common.Config.Builder, org.hyperledger.fabric.protos.common.ConfigOrBuilder>
getConfigFieldBuilder() {
if (configBuilder_ == null) {
configBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.hyperledger.fabric.protos.common.Config, org.hyperledger.fabric.protos.common.Config.Builder, org.hyperledger.fabric.protos.common.ConfigOrBuilder>(
getConfig(),
getParentForChildren(),
isClean());
config_ = null;
}
return configBuilder_;
}
private org.hyperledger.fabric.protos.common.Envelope lastUpdate_;
private com.google.protobuf.SingleFieldBuilder<
org.hyperledger.fabric.protos.common.Envelope, org.hyperledger.fabric.protos.common.Envelope.Builder, org.hyperledger.fabric.protos.common.EnvelopeOrBuilder> lastUpdateBuilder_;
/**
*
* The last CONFIG_UPDATE message which generated this current configuration
*
*
* .common.Envelope last_update = 2 [json_name = "lastUpdate"];
* @return Whether the lastUpdate field is set.
*/
public boolean hasLastUpdate() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
* The last CONFIG_UPDATE message which generated this current configuration
*
*
* .common.Envelope last_update = 2 [json_name = "lastUpdate"];
* @return The lastUpdate.
*/
public org.hyperledger.fabric.protos.common.Envelope getLastUpdate() {
if (lastUpdateBuilder_ == null) {
return lastUpdate_ == null ? org.hyperledger.fabric.protos.common.Envelope.getDefaultInstance() : lastUpdate_;
} else {
return lastUpdateBuilder_.getMessage();
}
}
/**
*
* The last CONFIG_UPDATE message which generated this current configuration
*
*
* .common.Envelope last_update = 2 [json_name = "lastUpdate"];
*/
public Builder setLastUpdate(org.hyperledger.fabric.protos.common.Envelope value) {
if (lastUpdateBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
lastUpdate_ = value;
} else {
lastUpdateBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
* The last CONFIG_UPDATE message which generated this current configuration
*
*
* .common.Envelope last_update = 2 [json_name = "lastUpdate"];
*/
public Builder setLastUpdate(
org.hyperledger.fabric.protos.common.Envelope.Builder builderForValue) {
if (lastUpdateBuilder_ == null) {
lastUpdate_ = builderForValue.build();
} else {
lastUpdateBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
* The last CONFIG_UPDATE message which generated this current configuration
*
*
* .common.Envelope last_update = 2 [json_name = "lastUpdate"];
*/
public Builder mergeLastUpdate(org.hyperledger.fabric.protos.common.Envelope value) {
if (lastUpdateBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0) &&
lastUpdate_ != null &&
lastUpdate_ != org.hyperledger.fabric.protos.common.Envelope.getDefaultInstance()) {
getLastUpdateBuilder().mergeFrom(value);
} else {
lastUpdate_ = value;
}
} else {
lastUpdateBuilder_.mergeFrom(value);
}
if (lastUpdate_ != null) {
bitField0_ |= 0x00000002;
onChanged();
}
return this;
}
/**
*
* The last CONFIG_UPDATE message which generated this current configuration
*
*
* .common.Envelope last_update = 2 [json_name = "lastUpdate"];
*/
public Builder clearLastUpdate() {
bitField0_ = (bitField0_ & ~0x00000002);
lastUpdate_ = null;
if (lastUpdateBuilder_ != null) {
lastUpdateBuilder_.dispose();
lastUpdateBuilder_ = null;
}
onChanged();
return this;
}
/**
*
* The last CONFIG_UPDATE message which generated this current configuration
*
*
* .common.Envelope last_update = 2 [json_name = "lastUpdate"];
*/
public org.hyperledger.fabric.protos.common.Envelope.Builder getLastUpdateBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getLastUpdateFieldBuilder().getBuilder();
}
/**
*
* The last CONFIG_UPDATE message which generated this current configuration
*
*
* .common.Envelope last_update = 2 [json_name = "lastUpdate"];
*/
public org.hyperledger.fabric.protos.common.EnvelopeOrBuilder getLastUpdateOrBuilder() {
if (lastUpdateBuilder_ != null) {
return lastUpdateBuilder_.getMessageOrBuilder();
} else {
return lastUpdate_ == null ?
org.hyperledger.fabric.protos.common.Envelope.getDefaultInstance() : lastUpdate_;
}
}
/**
*
* The last CONFIG_UPDATE message which generated this current configuration
*
*
* .common.Envelope last_update = 2 [json_name = "lastUpdate"];
*/
private com.google.protobuf.SingleFieldBuilder<
org.hyperledger.fabric.protos.common.Envelope, org.hyperledger.fabric.protos.common.Envelope.Builder, org.hyperledger.fabric.protos.common.EnvelopeOrBuilder>
getLastUpdateFieldBuilder() {
if (lastUpdateBuilder_ == null) {
lastUpdateBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.hyperledger.fabric.protos.common.Envelope, org.hyperledger.fabric.protos.common.Envelope.Builder, org.hyperledger.fabric.protos.common.EnvelopeOrBuilder>(
getLastUpdate(),
getParentForChildren(),
isClean());
lastUpdate_ = null;
}
return lastUpdateBuilder_;
}
// @@protoc_insertion_point(builder_scope:common.ConfigEnvelope)
}
// @@protoc_insertion_point(class_scope:common.ConfigEnvelope)
private static final org.hyperledger.fabric.protos.common.ConfigEnvelope DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new org.hyperledger.fabric.protos.common.ConfigEnvelope();
}
public static org.hyperledger.fabric.protos.common.ConfigEnvelope getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ConfigEnvelope parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public org.hyperledger.fabric.protos.common.ConfigEnvelope getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy