org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: gateway/gateway.proto
// Protobuf Java Version: 4.28.2
package org.hyperledger.fabric.protos.gateway;
/**
*
* ChaincodeEventsRequest contains details of the chaincode events that the caller wants to receive.
*
*
* Protobuf type {@code gateway.ChaincodeEventsRequest}
*/
public final class ChaincodeEventsRequest extends
com.google.protobuf.GeneratedMessage implements
// @@protoc_insertion_point(message_implements:gateway.ChaincodeEventsRequest)
ChaincodeEventsRequestOrBuilder {
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= */ "",
ChaincodeEventsRequest.class.getName());
}
// Use ChaincodeEventsRequest.newBuilder() to construct.
private ChaincodeEventsRequest(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
}
private ChaincodeEventsRequest() {
channelId_ = "";
chaincodeId_ = "";
identity_ = com.google.protobuf.ByteString.EMPTY;
afterTransactionId_ = "";
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.hyperledger.fabric.protos.gateway.GatewayProto.internal_static_gateway_ChaincodeEventsRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.hyperledger.fabric.protos.gateway.GatewayProto.internal_static_gateway_ChaincodeEventsRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest.class, org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest.Builder.class);
}
private int bitField0_;
public static final int CHANNEL_ID_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object channelId_ = "";
/**
*
* Identifier of the channel this request is bound for.
*
*
* string channel_id = 1 [json_name = "channelId"];
* @return The channelId.
*/
@java.lang.Override
public java.lang.String getChannelId() {
java.lang.Object ref = channelId_;
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();
channelId_ = s;
return s;
}
}
/**
*
* Identifier of the channel this request is bound for.
*
*
* string channel_id = 1 [json_name = "channelId"];
* @return The bytes for channelId.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getChannelIdBytes() {
java.lang.Object ref = channelId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
channelId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int CHAINCODE_ID_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private volatile java.lang.Object chaincodeId_ = "";
/**
*
* Name of the chaincode for which events are requested.
*
*
* string chaincode_id = 2 [json_name = "chaincodeId"];
* @return The chaincodeId.
*/
@java.lang.Override
public java.lang.String getChaincodeId() {
java.lang.Object ref = chaincodeId_;
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();
chaincodeId_ = s;
return s;
}
}
/**
*
* Name of the chaincode for which events are requested.
*
*
* string chaincode_id = 2 [json_name = "chaincodeId"];
* @return The bytes for chaincodeId.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getChaincodeIdBytes() {
java.lang.Object ref = chaincodeId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
chaincodeId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int IDENTITY_FIELD_NUMBER = 3;
private com.google.protobuf.ByteString identity_ = com.google.protobuf.ByteString.EMPTY;
/**
*
* Client requestor identity.
*
*
* bytes identity = 3 [json_name = "identity"];
* @return The identity.
*/
@java.lang.Override
public com.google.protobuf.ByteString getIdentity() {
return identity_;
}
public static final int START_POSITION_FIELD_NUMBER = 4;
private org.hyperledger.fabric.protos.orderer.SeekPosition startPosition_;
/**
*
* Position within the ledger at which to start reading events.
*
*
* .orderer.SeekPosition start_position = 4 [json_name = "startPosition"];
* @return Whether the startPosition field is set.
*/
@java.lang.Override
public boolean hasStartPosition() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
* Position within the ledger at which to start reading events.
*
*
* .orderer.SeekPosition start_position = 4 [json_name = "startPosition"];
* @return The startPosition.
*/
@java.lang.Override
public org.hyperledger.fabric.protos.orderer.SeekPosition getStartPosition() {
return startPosition_ == null ? org.hyperledger.fabric.protos.orderer.SeekPosition.getDefaultInstance() : startPosition_;
}
/**
*
* Position within the ledger at which to start reading events.
*
*
* .orderer.SeekPosition start_position = 4 [json_name = "startPosition"];
*/
@java.lang.Override
public org.hyperledger.fabric.protos.orderer.SeekPositionOrBuilder getStartPositionOrBuilder() {
return startPosition_ == null ? org.hyperledger.fabric.protos.orderer.SeekPosition.getDefaultInstance() : startPosition_;
}
public static final int AFTER_TRANSACTION_ID_FIELD_NUMBER = 5;
@SuppressWarnings("serial")
private volatile java.lang.Object afterTransactionId_ = "";
/**
*
* Only returns events after this transaction ID. Transactions up to and including this one should be ignored. This
* is used to allow resume of event listening from a certain position within a start block specified by
* start_position.
*
*
* string after_transaction_id = 5 [json_name = "afterTransactionId"];
* @return The afterTransactionId.
*/
@java.lang.Override
public java.lang.String getAfterTransactionId() {
java.lang.Object ref = afterTransactionId_;
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();
afterTransactionId_ = s;
return s;
}
}
/**
*
* Only returns events after this transaction ID. Transactions up to and including this one should be ignored. This
* is used to allow resume of event listening from a certain position within a start block specified by
* start_position.
*
*
* string after_transaction_id = 5 [json_name = "afterTransactionId"];
* @return The bytes for afterTransactionId.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getAfterTransactionIdBytes() {
java.lang.Object ref = afterTransactionId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
afterTransactionId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
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(channelId_)) {
com.google.protobuf.GeneratedMessage.writeString(output, 1, channelId_);
}
if (!com.google.protobuf.GeneratedMessage.isStringEmpty(chaincodeId_)) {
com.google.protobuf.GeneratedMessage.writeString(output, 2, chaincodeId_);
}
if (!identity_.isEmpty()) {
output.writeBytes(3, identity_);
}
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(4, getStartPosition());
}
if (!com.google.protobuf.GeneratedMessage.isStringEmpty(afterTransactionId_)) {
com.google.protobuf.GeneratedMessage.writeString(output, 5, afterTransactionId_);
}
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(channelId_)) {
size += com.google.protobuf.GeneratedMessage.computeStringSize(1, channelId_);
}
if (!com.google.protobuf.GeneratedMessage.isStringEmpty(chaincodeId_)) {
size += com.google.protobuf.GeneratedMessage.computeStringSize(2, chaincodeId_);
}
if (!identity_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(3, identity_);
}
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(4, getStartPosition());
}
if (!com.google.protobuf.GeneratedMessage.isStringEmpty(afterTransactionId_)) {
size += com.google.protobuf.GeneratedMessage.computeStringSize(5, afterTransactionId_);
}
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.gateway.ChaincodeEventsRequest)) {
return super.equals(obj);
}
org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest other = (org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest) obj;
if (!getChannelId()
.equals(other.getChannelId())) return false;
if (!getChaincodeId()
.equals(other.getChaincodeId())) return false;
if (!getIdentity()
.equals(other.getIdentity())) return false;
if (hasStartPosition() != other.hasStartPosition()) return false;
if (hasStartPosition()) {
if (!getStartPosition()
.equals(other.getStartPosition())) return false;
}
if (!getAfterTransactionId()
.equals(other.getAfterTransactionId())) 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) + CHANNEL_ID_FIELD_NUMBER;
hash = (53 * hash) + getChannelId().hashCode();
hash = (37 * hash) + CHAINCODE_ID_FIELD_NUMBER;
hash = (53 * hash) + getChaincodeId().hashCode();
hash = (37 * hash) + IDENTITY_FIELD_NUMBER;
hash = (53 * hash) + getIdentity().hashCode();
if (hasStartPosition()) {
hash = (37 * hash) + START_POSITION_FIELD_NUMBER;
hash = (53 * hash) + getStartPosition().hashCode();
}
hash = (37 * hash) + AFTER_TRANSACTION_ID_FIELD_NUMBER;
hash = (53 * hash) + getAfterTransactionId().hashCode();
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest 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.gateway.ChaincodeEventsRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest 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.gateway.ChaincodeEventsRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input);
}
public static org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest 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.gateway.ChaincodeEventsRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseDelimitedWithIOException(PARSER, input);
}
public static org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest 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.gateway.ChaincodeEventsRequest parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input);
}
public static org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest 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.gateway.ChaincodeEventsRequest 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;
}
/**
*
* ChaincodeEventsRequest contains details of the chaincode events that the caller wants to receive.
*
*
* Protobuf type {@code gateway.ChaincodeEventsRequest}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder implements
// @@protoc_insertion_point(builder_implements:gateway.ChaincodeEventsRequest)
org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.hyperledger.fabric.protos.gateway.GatewayProto.internal_static_gateway_ChaincodeEventsRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.hyperledger.fabric.protos.gateway.GatewayProto.internal_static_gateway_ChaincodeEventsRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest.class, org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest.Builder.class);
}
// Construct using org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage
.alwaysUseFieldBuilders) {
getStartPositionFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
channelId_ = "";
chaincodeId_ = "";
identity_ = com.google.protobuf.ByteString.EMPTY;
startPosition_ = null;
if (startPositionBuilder_ != null) {
startPositionBuilder_.dispose();
startPositionBuilder_ = null;
}
afterTransactionId_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.hyperledger.fabric.protos.gateway.GatewayProto.internal_static_gateway_ChaincodeEventsRequest_descriptor;
}
@java.lang.Override
public org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest getDefaultInstanceForType() {
return org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest.getDefaultInstance();
}
@java.lang.Override
public org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest build() {
org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest buildPartial() {
org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest result = new org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.channelId_ = channelId_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.chaincodeId_ = chaincodeId_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.identity_ = identity_;
}
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000008) != 0)) {
result.startPosition_ = startPositionBuilder_ == null
? startPosition_
: startPositionBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000010) != 0)) {
result.afterTransactionId_ = afterTransactionId_;
}
result.bitField0_ |= to_bitField0_;
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest) {
return mergeFrom((org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest other) {
if (other == org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest.getDefaultInstance()) return this;
if (!other.getChannelId().isEmpty()) {
channelId_ = other.channelId_;
bitField0_ |= 0x00000001;
onChanged();
}
if (!other.getChaincodeId().isEmpty()) {
chaincodeId_ = other.chaincodeId_;
bitField0_ |= 0x00000002;
onChanged();
}
if (other.getIdentity() != com.google.protobuf.ByteString.EMPTY) {
setIdentity(other.getIdentity());
}
if (other.hasStartPosition()) {
mergeStartPosition(other.getStartPosition());
}
if (!other.getAfterTransactionId().isEmpty()) {
afterTransactionId_ = other.afterTransactionId_;
bitField0_ |= 0x00000010;
onChanged();
}
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: {
channelId_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
chaincodeId_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000002;
break;
} // case 18
case 26: {
identity_ = input.readBytes();
bitField0_ |= 0x00000004;
break;
} // case 26
case 34: {
input.readMessage(
getStartPositionFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000008;
break;
} // case 34
case 42: {
afterTransactionId_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000010;
break;
} // case 42
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 channelId_ = "";
/**
*
* Identifier of the channel this request is bound for.
*
*
* string channel_id = 1 [json_name = "channelId"];
* @return The channelId.
*/
public java.lang.String getChannelId() {
java.lang.Object ref = channelId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
channelId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* Identifier of the channel this request is bound for.
*
*
* string channel_id = 1 [json_name = "channelId"];
* @return The bytes for channelId.
*/
public com.google.protobuf.ByteString
getChannelIdBytes() {
java.lang.Object ref = channelId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
channelId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* Identifier of the channel this request is bound for.
*
*
* string channel_id = 1 [json_name = "channelId"];
* @param value The channelId to set.
* @return This builder for chaining.
*/
public Builder setChannelId(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
channelId_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* Identifier of the channel this request is bound for.
*
*
* string channel_id = 1 [json_name = "channelId"];
* @return This builder for chaining.
*/
public Builder clearChannelId() {
channelId_ = getDefaultInstance().getChannelId();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
* Identifier of the channel this request is bound for.
*
*
* string channel_id = 1 [json_name = "channelId"];
* @param value The bytes for channelId to set.
* @return This builder for chaining.
*/
public Builder setChannelIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
channelId_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private java.lang.Object chaincodeId_ = "";
/**
*
* Name of the chaincode for which events are requested.
*
*
* string chaincode_id = 2 [json_name = "chaincodeId"];
* @return The chaincodeId.
*/
public java.lang.String getChaincodeId() {
java.lang.Object ref = chaincodeId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
chaincodeId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* Name of the chaincode for which events are requested.
*
*
* string chaincode_id = 2 [json_name = "chaincodeId"];
* @return The bytes for chaincodeId.
*/
public com.google.protobuf.ByteString
getChaincodeIdBytes() {
java.lang.Object ref = chaincodeId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
chaincodeId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* Name of the chaincode for which events are requested.
*
*
* string chaincode_id = 2 [json_name = "chaincodeId"];
* @param value The chaincodeId to set.
* @return This builder for chaining.
*/
public Builder setChaincodeId(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
chaincodeId_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
* Name of the chaincode for which events are requested.
*
*
* string chaincode_id = 2 [json_name = "chaincodeId"];
* @return This builder for chaining.
*/
public Builder clearChaincodeId() {
chaincodeId_ = getDefaultInstance().getChaincodeId();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
*
* Name of the chaincode for which events are requested.
*
*
* string chaincode_id = 2 [json_name = "chaincodeId"];
* @param value The bytes for chaincodeId to set.
* @return This builder for chaining.
*/
public Builder setChaincodeIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
chaincodeId_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
private com.google.protobuf.ByteString identity_ = com.google.protobuf.ByteString.EMPTY;
/**
*
* Client requestor identity.
*
*
* bytes identity = 3 [json_name = "identity"];
* @return The identity.
*/
@java.lang.Override
public com.google.protobuf.ByteString getIdentity() {
return identity_;
}
/**
*
* Client requestor identity.
*
*
* bytes identity = 3 [json_name = "identity"];
* @param value The identity to set.
* @return This builder for chaining.
*/
public Builder setIdentity(com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
identity_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
* Client requestor identity.
*
*
* bytes identity = 3 [json_name = "identity"];
* @return This builder for chaining.
*/
public Builder clearIdentity() {
bitField0_ = (bitField0_ & ~0x00000004);
identity_ = getDefaultInstance().getIdentity();
onChanged();
return this;
}
private org.hyperledger.fabric.protos.orderer.SeekPosition startPosition_;
private com.google.protobuf.SingleFieldBuilder<
org.hyperledger.fabric.protos.orderer.SeekPosition, org.hyperledger.fabric.protos.orderer.SeekPosition.Builder, org.hyperledger.fabric.protos.orderer.SeekPositionOrBuilder> startPositionBuilder_;
/**
*
* Position within the ledger at which to start reading events.
*
*
* .orderer.SeekPosition start_position = 4 [json_name = "startPosition"];
* @return Whether the startPosition field is set.
*/
public boolean hasStartPosition() {
return ((bitField0_ & 0x00000008) != 0);
}
/**
*
* Position within the ledger at which to start reading events.
*
*
* .orderer.SeekPosition start_position = 4 [json_name = "startPosition"];
* @return The startPosition.
*/
public org.hyperledger.fabric.protos.orderer.SeekPosition getStartPosition() {
if (startPositionBuilder_ == null) {
return startPosition_ == null ? org.hyperledger.fabric.protos.orderer.SeekPosition.getDefaultInstance() : startPosition_;
} else {
return startPositionBuilder_.getMessage();
}
}
/**
*
* Position within the ledger at which to start reading events.
*
*
* .orderer.SeekPosition start_position = 4 [json_name = "startPosition"];
*/
public Builder setStartPosition(org.hyperledger.fabric.protos.orderer.SeekPosition value) {
if (startPositionBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
startPosition_ = value;
} else {
startPositionBuilder_.setMessage(value);
}
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
* Position within the ledger at which to start reading events.
*
*
* .orderer.SeekPosition start_position = 4 [json_name = "startPosition"];
*/
public Builder setStartPosition(
org.hyperledger.fabric.protos.orderer.SeekPosition.Builder builderForValue) {
if (startPositionBuilder_ == null) {
startPosition_ = builderForValue.build();
} else {
startPositionBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
* Position within the ledger at which to start reading events.
*
*
* .orderer.SeekPosition start_position = 4 [json_name = "startPosition"];
*/
public Builder mergeStartPosition(org.hyperledger.fabric.protos.orderer.SeekPosition value) {
if (startPositionBuilder_ == null) {
if (((bitField0_ & 0x00000008) != 0) &&
startPosition_ != null &&
startPosition_ != org.hyperledger.fabric.protos.orderer.SeekPosition.getDefaultInstance()) {
getStartPositionBuilder().mergeFrom(value);
} else {
startPosition_ = value;
}
} else {
startPositionBuilder_.mergeFrom(value);
}
if (startPosition_ != null) {
bitField0_ |= 0x00000008;
onChanged();
}
return this;
}
/**
*
* Position within the ledger at which to start reading events.
*
*
* .orderer.SeekPosition start_position = 4 [json_name = "startPosition"];
*/
public Builder clearStartPosition() {
bitField0_ = (bitField0_ & ~0x00000008);
startPosition_ = null;
if (startPositionBuilder_ != null) {
startPositionBuilder_.dispose();
startPositionBuilder_ = null;
}
onChanged();
return this;
}
/**
*
* Position within the ledger at which to start reading events.
*
*
* .orderer.SeekPosition start_position = 4 [json_name = "startPosition"];
*/
public org.hyperledger.fabric.protos.orderer.SeekPosition.Builder getStartPositionBuilder() {
bitField0_ |= 0x00000008;
onChanged();
return getStartPositionFieldBuilder().getBuilder();
}
/**
*
* Position within the ledger at which to start reading events.
*
*
* .orderer.SeekPosition start_position = 4 [json_name = "startPosition"];
*/
public org.hyperledger.fabric.protos.orderer.SeekPositionOrBuilder getStartPositionOrBuilder() {
if (startPositionBuilder_ != null) {
return startPositionBuilder_.getMessageOrBuilder();
} else {
return startPosition_ == null ?
org.hyperledger.fabric.protos.orderer.SeekPosition.getDefaultInstance() : startPosition_;
}
}
/**
*
* Position within the ledger at which to start reading events.
*
*
* .orderer.SeekPosition start_position = 4 [json_name = "startPosition"];
*/
private com.google.protobuf.SingleFieldBuilder<
org.hyperledger.fabric.protos.orderer.SeekPosition, org.hyperledger.fabric.protos.orderer.SeekPosition.Builder, org.hyperledger.fabric.protos.orderer.SeekPositionOrBuilder>
getStartPositionFieldBuilder() {
if (startPositionBuilder_ == null) {
startPositionBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.hyperledger.fabric.protos.orderer.SeekPosition, org.hyperledger.fabric.protos.orderer.SeekPosition.Builder, org.hyperledger.fabric.protos.orderer.SeekPositionOrBuilder>(
getStartPosition(),
getParentForChildren(),
isClean());
startPosition_ = null;
}
return startPositionBuilder_;
}
private java.lang.Object afterTransactionId_ = "";
/**
*
* Only returns events after this transaction ID. Transactions up to and including this one should be ignored. This
* is used to allow resume of event listening from a certain position within a start block specified by
* start_position.
*
*
* string after_transaction_id = 5 [json_name = "afterTransactionId"];
* @return The afterTransactionId.
*/
public java.lang.String getAfterTransactionId() {
java.lang.Object ref = afterTransactionId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
afterTransactionId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* Only returns events after this transaction ID. Transactions up to and including this one should be ignored. This
* is used to allow resume of event listening from a certain position within a start block specified by
* start_position.
*
*
* string after_transaction_id = 5 [json_name = "afterTransactionId"];
* @return The bytes for afterTransactionId.
*/
public com.google.protobuf.ByteString
getAfterTransactionIdBytes() {
java.lang.Object ref = afterTransactionId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
afterTransactionId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* Only returns events after this transaction ID. Transactions up to and including this one should be ignored. This
* is used to allow resume of event listening from a certain position within a start block specified by
* start_position.
*
*
* string after_transaction_id = 5 [json_name = "afterTransactionId"];
* @param value The afterTransactionId to set.
* @return This builder for chaining.
*/
public Builder setAfterTransactionId(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
afterTransactionId_ = value;
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
* Only returns events after this transaction ID. Transactions up to and including this one should be ignored. This
* is used to allow resume of event listening from a certain position within a start block specified by
* start_position.
*
*
* string after_transaction_id = 5 [json_name = "afterTransactionId"];
* @return This builder for chaining.
*/
public Builder clearAfterTransactionId() {
afterTransactionId_ = getDefaultInstance().getAfterTransactionId();
bitField0_ = (bitField0_ & ~0x00000010);
onChanged();
return this;
}
/**
*
* Only returns events after this transaction ID. Transactions up to and including this one should be ignored. This
* is used to allow resume of event listening from a certain position within a start block specified by
* start_position.
*
*
* string after_transaction_id = 5 [json_name = "afterTransactionId"];
* @param value The bytes for afterTransactionId to set.
* @return This builder for chaining.
*/
public Builder setAfterTransactionIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
afterTransactionId_ = value;
bitField0_ |= 0x00000010;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:gateway.ChaincodeEventsRequest)
}
// @@protoc_insertion_point(class_scope:gateway.ChaincodeEventsRequest)
private static final org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest();
}
public static org.hyperledger.fabric.protos.gateway.ChaincodeEventsRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ChaincodeEventsRequest 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.gateway.ChaincodeEventsRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy