com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-full Show documentation
Show all versions of sdk-full Show documentation
Hedera™ Hashgraph SDK for Java
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: transaction_get_record.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
/**
*
**
* Get the record for a transaction. If the transaction requested a record, then the record lasts
* for one hour, and a state proof is available for it. If the transaction created an account, file,
* or smart contract instance, then the record will contain the ID for what it created. If the
* transaction called a smart contract function, then the record contains the result of that call.
* If the transaction was a cryptocurrency transfer, then the record includes the TransferList which
* gives the details of that transfer. If the transaction didn't return anything that should be in
* the record, then the results field will be set to nothing.
*
*
* Protobuf type {@code proto.TransactionGetRecordQuery}
*/
public final class TransactionGetRecordQuery extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:proto.TransactionGetRecordQuery)
TransactionGetRecordQueryOrBuilder {
private static final long serialVersionUID = 0L;
// Use TransactionGetRecordQuery.newBuilder() to construct.
private TransactionGetRecordQuery(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private TransactionGetRecordQuery() {
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new TransactionGetRecordQuery();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hedera.hashgraph.sdk.proto.TransactionGetRecord.internal_static_proto_TransactionGetRecordQuery_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hedera.hashgraph.sdk.proto.TransactionGetRecord.internal_static_proto_TransactionGetRecordQuery_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery.class, com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery.Builder.class);
}
private int bitField0_;
public static final int HEADER_FIELD_NUMBER = 1;
private com.hedera.hashgraph.sdk.proto.QueryHeader header_;
/**
*
**
* Standard info sent from client to node, including the signed payment, and what kind of
* response is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
* @return Whether the header field is set.
*/
@java.lang.Override
public boolean hasHeader() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
**
* Standard info sent from client to node, including the signed payment, and what kind of
* response is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
* @return The header.
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.QueryHeader getHeader() {
return header_ == null ? com.hedera.hashgraph.sdk.proto.QueryHeader.getDefaultInstance() : header_;
}
/**
*
**
* Standard info sent from client to node, including the signed payment, and what kind of
* response is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.QueryHeaderOrBuilder getHeaderOrBuilder() {
return header_ == null ? com.hedera.hashgraph.sdk.proto.QueryHeader.getDefaultInstance() : header_;
}
public static final int TRANSACTIONID_FIELD_NUMBER = 2;
private com.hedera.hashgraph.sdk.proto.TransactionID transactionID_;
/**
*
**
* The ID of the transaction for which the record is requested.
*
*
* .proto.TransactionID transactionID = 2;
* @return Whether the transactionID field is set.
*/
@java.lang.Override
public boolean hasTransactionID() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
**
* The ID of the transaction for which the record is requested.
*
*
* .proto.TransactionID transactionID = 2;
* @return The transactionID.
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.TransactionID getTransactionID() {
return transactionID_ == null ? com.hedera.hashgraph.sdk.proto.TransactionID.getDefaultInstance() : transactionID_;
}
/**
*
**
* The ID of the transaction for which the record is requested.
*
*
* .proto.TransactionID transactionID = 2;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.TransactionIDOrBuilder getTransactionIDOrBuilder() {
return transactionID_ == null ? com.hedera.hashgraph.sdk.proto.TransactionID.getDefaultInstance() : transactionID_;
}
public static final int INCLUDEDUPLICATES_FIELD_NUMBER = 3;
private boolean includeDuplicates_ = false;
/**
*
**
* Whether records of processing duplicate transactions should be returned along with the record
* of processing the first consensus transaction with the given id whose status was neither
* <tt>INVALID_NODE_ACCOUNT</tt> nor <tt>INVALID_PAYER_SIGNATURE</tt>; <b>or</b>, if no such
* record exists, the record of processing the first transaction to reach consensus with the
* given transaction id..
*
*
* bool includeDuplicates = 3;
* @return The includeDuplicates.
*/
@java.lang.Override
public boolean getIncludeDuplicates() {
return includeDuplicates_;
}
public static final int INCLUDE_CHILD_RECORDS_FIELD_NUMBER = 4;
private boolean includeChildRecords_ = false;
/**
*
**
* Whether the response should include the records of any child transactions spawned by the
* top-level transaction with the given transactionID.
*
*
* bool include_child_records = 4;
* @return The includeChildRecords.
*/
@java.lang.Override
public boolean getIncludeChildRecords() {
return includeChildRecords_;
}
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, getHeader());
}
if (((bitField0_ & 0x00000002) != 0)) {
output.writeMessage(2, getTransactionID());
}
if (includeDuplicates_ != false) {
output.writeBool(3, includeDuplicates_);
}
if (includeChildRecords_ != false) {
output.writeBool(4, includeChildRecords_);
}
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, getHeader());
}
if (((bitField0_ & 0x00000002) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getTransactionID());
}
if (includeDuplicates_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(3, includeDuplicates_);
}
if (includeChildRecords_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(4, includeChildRecords_);
}
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 com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery)) {
return super.equals(obj);
}
com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery other = (com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery) obj;
if (hasHeader() != other.hasHeader()) return false;
if (hasHeader()) {
if (!getHeader()
.equals(other.getHeader())) return false;
}
if (hasTransactionID() != other.hasTransactionID()) return false;
if (hasTransactionID()) {
if (!getTransactionID()
.equals(other.getTransactionID())) return false;
}
if (getIncludeDuplicates()
!= other.getIncludeDuplicates()) return false;
if (getIncludeChildRecords()
!= other.getIncludeChildRecords()) 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 (hasHeader()) {
hash = (37 * hash) + HEADER_FIELD_NUMBER;
hash = (53 * hash) + getHeader().hashCode();
}
if (hasTransactionID()) {
hash = (37 * hash) + TRANSACTIONID_FIELD_NUMBER;
hash = (53 * hash) + getTransactionID().hashCode();
}
hash = (37 * hash) + INCLUDEDUPLICATES_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getIncludeDuplicates());
hash = (37 * hash) + INCLUDE_CHILD_RECORDS_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getIncludeChildRecords());
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery 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 com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery 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 com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery 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(com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery 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;
}
/**
*
**
* Get the record for a transaction. If the transaction requested a record, then the record lasts
* for one hour, and a state proof is available for it. If the transaction created an account, file,
* or smart contract instance, then the record will contain the ID for what it created. If the
* transaction called a smart contract function, then the record contains the result of that call.
* If the transaction was a cryptocurrency transfer, then the record includes the TransferList which
* gives the details of that transfer. If the transaction didn't return anything that should be in
* the record, then the results field will be set to nothing.
*
*
* Protobuf type {@code proto.TransactionGetRecordQuery}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:proto.TransactionGetRecordQuery)
com.hedera.hashgraph.sdk.proto.TransactionGetRecordQueryOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hedera.hashgraph.sdk.proto.TransactionGetRecord.internal_static_proto_TransactionGetRecordQuery_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hedera.hashgraph.sdk.proto.TransactionGetRecord.internal_static_proto_TransactionGetRecordQuery_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery.class, com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery.Builder.class);
}
// Construct using com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getHeaderFieldBuilder();
getTransactionIDFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
header_ = null;
if (headerBuilder_ != null) {
headerBuilder_.dispose();
headerBuilder_ = null;
}
transactionID_ = null;
if (transactionIDBuilder_ != null) {
transactionIDBuilder_.dispose();
transactionIDBuilder_ = null;
}
includeDuplicates_ = false;
includeChildRecords_ = false;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.hedera.hashgraph.sdk.proto.TransactionGetRecord.internal_static_proto_TransactionGetRecordQuery_descriptor;
}
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery getDefaultInstanceForType() {
return com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery.getDefaultInstance();
}
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery build() {
com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery buildPartial() {
com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery result = new com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.header_ = headerBuilder_ == null
? header_
: headerBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.transactionID_ = transactionIDBuilder_ == null
? transactionID_
: transactionIDBuilder_.build();
to_bitField0_ |= 0x00000002;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.includeDuplicates_ = includeDuplicates_;
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.includeChildRecords_ = includeChildRecords_;
}
result.bitField0_ |= to_bitField0_;
}
@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 com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery) {
return mergeFrom((com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery other) {
if (other == com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery.getDefaultInstance()) return this;
if (other.hasHeader()) {
mergeHeader(other.getHeader());
}
if (other.hasTransactionID()) {
mergeTransactionID(other.getTransactionID());
}
if (other.getIncludeDuplicates() != false) {
setIncludeDuplicates(other.getIncludeDuplicates());
}
if (other.getIncludeChildRecords() != false) {
setIncludeChildRecords(other.getIncludeChildRecords());
}
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(
getHeaderFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
input.readMessage(
getTransactionIDFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000002;
break;
} // case 18
case 24: {
includeDuplicates_ = input.readBool();
bitField0_ |= 0x00000004;
break;
} // case 24
case 32: {
includeChildRecords_ = input.readBool();
bitField0_ |= 0x00000008;
break;
} // case 32
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 com.hedera.hashgraph.sdk.proto.QueryHeader header_;
private com.google.protobuf.SingleFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.QueryHeader, com.hedera.hashgraph.sdk.proto.QueryHeader.Builder, com.hedera.hashgraph.sdk.proto.QueryHeaderOrBuilder> headerBuilder_;
/**
*
**
* Standard info sent from client to node, including the signed payment, and what kind of
* response is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
* @return Whether the header field is set.
*/
public boolean hasHeader() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
**
* Standard info sent from client to node, including the signed payment, and what kind of
* response is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
* @return The header.
*/
public com.hedera.hashgraph.sdk.proto.QueryHeader getHeader() {
if (headerBuilder_ == null) {
return header_ == null ? com.hedera.hashgraph.sdk.proto.QueryHeader.getDefaultInstance() : header_;
} else {
return headerBuilder_.getMessage();
}
}
/**
*
**
* Standard info sent from client to node, including the signed payment, and what kind of
* response is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
*/
public Builder setHeader(com.hedera.hashgraph.sdk.proto.QueryHeader value) {
if (headerBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
header_ = value;
} else {
headerBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
**
* Standard info sent from client to node, including the signed payment, and what kind of
* response is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
*/
public Builder setHeader(
com.hedera.hashgraph.sdk.proto.QueryHeader.Builder builderForValue) {
if (headerBuilder_ == null) {
header_ = builderForValue.build();
} else {
headerBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
**
* Standard info sent from client to node, including the signed payment, and what kind of
* response is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
*/
public Builder mergeHeader(com.hedera.hashgraph.sdk.proto.QueryHeader value) {
if (headerBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0) &&
header_ != null &&
header_ != com.hedera.hashgraph.sdk.proto.QueryHeader.getDefaultInstance()) {
getHeaderBuilder().mergeFrom(value);
} else {
header_ = value;
}
} else {
headerBuilder_.mergeFrom(value);
}
if (header_ != null) {
bitField0_ |= 0x00000001;
onChanged();
}
return this;
}
/**
*
**
* Standard info sent from client to node, including the signed payment, and what kind of
* response is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
*/
public Builder clearHeader() {
bitField0_ = (bitField0_ & ~0x00000001);
header_ = null;
if (headerBuilder_ != null) {
headerBuilder_.dispose();
headerBuilder_ = null;
}
onChanged();
return this;
}
/**
*
**
* Standard info sent from client to node, including the signed payment, and what kind of
* response is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
*/
public com.hedera.hashgraph.sdk.proto.QueryHeader.Builder getHeaderBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getHeaderFieldBuilder().getBuilder();
}
/**
*
**
* Standard info sent from client to node, including the signed payment, and what kind of
* response is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
*/
public com.hedera.hashgraph.sdk.proto.QueryHeaderOrBuilder getHeaderOrBuilder() {
if (headerBuilder_ != null) {
return headerBuilder_.getMessageOrBuilder();
} else {
return header_ == null ?
com.hedera.hashgraph.sdk.proto.QueryHeader.getDefaultInstance() : header_;
}
}
/**
*
**
* Standard info sent from client to node, including the signed payment, and what kind of
* response is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.QueryHeader, com.hedera.hashgraph.sdk.proto.QueryHeader.Builder, com.hedera.hashgraph.sdk.proto.QueryHeaderOrBuilder>
getHeaderFieldBuilder() {
if (headerBuilder_ == null) {
headerBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.QueryHeader, com.hedera.hashgraph.sdk.proto.QueryHeader.Builder, com.hedera.hashgraph.sdk.proto.QueryHeaderOrBuilder>(
getHeader(),
getParentForChildren(),
isClean());
header_ = null;
}
return headerBuilder_;
}
private com.hedera.hashgraph.sdk.proto.TransactionID transactionID_;
private com.google.protobuf.SingleFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.TransactionID, com.hedera.hashgraph.sdk.proto.TransactionID.Builder, com.hedera.hashgraph.sdk.proto.TransactionIDOrBuilder> transactionIDBuilder_;
/**
*
**
* The ID of the transaction for which the record is requested.
*
*
* .proto.TransactionID transactionID = 2;
* @return Whether the transactionID field is set.
*/
public boolean hasTransactionID() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
**
* The ID of the transaction for which the record is requested.
*
*
* .proto.TransactionID transactionID = 2;
* @return The transactionID.
*/
public com.hedera.hashgraph.sdk.proto.TransactionID getTransactionID() {
if (transactionIDBuilder_ == null) {
return transactionID_ == null ? com.hedera.hashgraph.sdk.proto.TransactionID.getDefaultInstance() : transactionID_;
} else {
return transactionIDBuilder_.getMessage();
}
}
/**
*
**
* The ID of the transaction for which the record is requested.
*
*
* .proto.TransactionID transactionID = 2;
*/
public Builder setTransactionID(com.hedera.hashgraph.sdk.proto.TransactionID value) {
if (transactionIDBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
transactionID_ = value;
} else {
transactionIDBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
**
* The ID of the transaction for which the record is requested.
*
*
* .proto.TransactionID transactionID = 2;
*/
public Builder setTransactionID(
com.hedera.hashgraph.sdk.proto.TransactionID.Builder builderForValue) {
if (transactionIDBuilder_ == null) {
transactionID_ = builderForValue.build();
} else {
transactionIDBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
**
* The ID of the transaction for which the record is requested.
*
*
* .proto.TransactionID transactionID = 2;
*/
public Builder mergeTransactionID(com.hedera.hashgraph.sdk.proto.TransactionID value) {
if (transactionIDBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0) &&
transactionID_ != null &&
transactionID_ != com.hedera.hashgraph.sdk.proto.TransactionID.getDefaultInstance()) {
getTransactionIDBuilder().mergeFrom(value);
} else {
transactionID_ = value;
}
} else {
transactionIDBuilder_.mergeFrom(value);
}
if (transactionID_ != null) {
bitField0_ |= 0x00000002;
onChanged();
}
return this;
}
/**
*
**
* The ID of the transaction for which the record is requested.
*
*
* .proto.TransactionID transactionID = 2;
*/
public Builder clearTransactionID() {
bitField0_ = (bitField0_ & ~0x00000002);
transactionID_ = null;
if (transactionIDBuilder_ != null) {
transactionIDBuilder_.dispose();
transactionIDBuilder_ = null;
}
onChanged();
return this;
}
/**
*
**
* The ID of the transaction for which the record is requested.
*
*
* .proto.TransactionID transactionID = 2;
*/
public com.hedera.hashgraph.sdk.proto.TransactionID.Builder getTransactionIDBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getTransactionIDFieldBuilder().getBuilder();
}
/**
*
**
* The ID of the transaction for which the record is requested.
*
*
* .proto.TransactionID transactionID = 2;
*/
public com.hedera.hashgraph.sdk.proto.TransactionIDOrBuilder getTransactionIDOrBuilder() {
if (transactionIDBuilder_ != null) {
return transactionIDBuilder_.getMessageOrBuilder();
} else {
return transactionID_ == null ?
com.hedera.hashgraph.sdk.proto.TransactionID.getDefaultInstance() : transactionID_;
}
}
/**
*
**
* The ID of the transaction for which the record is requested.
*
*
* .proto.TransactionID transactionID = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.TransactionID, com.hedera.hashgraph.sdk.proto.TransactionID.Builder, com.hedera.hashgraph.sdk.proto.TransactionIDOrBuilder>
getTransactionIDFieldBuilder() {
if (transactionIDBuilder_ == null) {
transactionIDBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.TransactionID, com.hedera.hashgraph.sdk.proto.TransactionID.Builder, com.hedera.hashgraph.sdk.proto.TransactionIDOrBuilder>(
getTransactionID(),
getParentForChildren(),
isClean());
transactionID_ = null;
}
return transactionIDBuilder_;
}
private boolean includeDuplicates_ ;
/**
*
**
* Whether records of processing duplicate transactions should be returned along with the record
* of processing the first consensus transaction with the given id whose status was neither
* <tt>INVALID_NODE_ACCOUNT</tt> nor <tt>INVALID_PAYER_SIGNATURE</tt>; <b>or</b>, if no such
* record exists, the record of processing the first transaction to reach consensus with the
* given transaction id..
*
*
* bool includeDuplicates = 3;
* @return The includeDuplicates.
*/
@java.lang.Override
public boolean getIncludeDuplicates() {
return includeDuplicates_;
}
/**
*
**
* Whether records of processing duplicate transactions should be returned along with the record
* of processing the first consensus transaction with the given id whose status was neither
* <tt>INVALID_NODE_ACCOUNT</tt> nor <tt>INVALID_PAYER_SIGNATURE</tt>; <b>or</b>, if no such
* record exists, the record of processing the first transaction to reach consensus with the
* given transaction id..
*
*
* bool includeDuplicates = 3;
* @param value The includeDuplicates to set.
* @return This builder for chaining.
*/
public Builder setIncludeDuplicates(boolean value) {
includeDuplicates_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
**
* Whether records of processing duplicate transactions should be returned along with the record
* of processing the first consensus transaction with the given id whose status was neither
* <tt>INVALID_NODE_ACCOUNT</tt> nor <tt>INVALID_PAYER_SIGNATURE</tt>; <b>or</b>, if no such
* record exists, the record of processing the first transaction to reach consensus with the
* given transaction id..
*
*
* bool includeDuplicates = 3;
* @return This builder for chaining.
*/
public Builder clearIncludeDuplicates() {
bitField0_ = (bitField0_ & ~0x00000004);
includeDuplicates_ = false;
onChanged();
return this;
}
private boolean includeChildRecords_ ;
/**
*
**
* Whether the response should include the records of any child transactions spawned by the
* top-level transaction with the given transactionID.
*
*
* bool include_child_records = 4;
* @return The includeChildRecords.
*/
@java.lang.Override
public boolean getIncludeChildRecords() {
return includeChildRecords_;
}
/**
*
**
* Whether the response should include the records of any child transactions spawned by the
* top-level transaction with the given transactionID.
*
*
* bool include_child_records = 4;
* @param value The includeChildRecords to set.
* @return This builder for chaining.
*/
public Builder setIncludeChildRecords(boolean value) {
includeChildRecords_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
**
* Whether the response should include the records of any child transactions spawned by the
* top-level transaction with the given transactionID.
*
*
* bool include_child_records = 4;
* @return This builder for chaining.
*/
public Builder clearIncludeChildRecords() {
bitField0_ = (bitField0_ & ~0x00000008);
includeChildRecords_ = false;
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:proto.TransactionGetRecordQuery)
}
// @@protoc_insertion_point(class_scope:proto.TransactionGetRecordQuery)
private static final com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery();
}
public static com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public TransactionGetRecordQuery 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 com.hedera.hashgraph.sdk.proto.TransactionGetRecordQuery getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}