com.hedera.hashgraph.sdk.proto.TransactionID 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: basic_types.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
/**
*
**
* The ID for a transaction. This is used for retrieving receipts and records for a transaction, for
* appending to a file right after creating it, for instantiating a smart contract with bytecode in
* a file just created, and internally by the network for detecting when duplicate transactions are
* submitted. A user might get a transaction processed faster by submitting it to N nodes, each with
* a different node account, but all with the same TransactionID. Then, the transaction will take
* effect when the first of all those nodes submits the transaction and it reaches consensus. The
* other transactions will not take effect. So this could make the transaction take effect faster,
* if any given node might be slow. However, the full transaction fee is charged for each
* transaction, so the total fee is N times as much if the transaction is sent to N nodes.
*
* Applicable to Scheduled Transactions:
* - The ID of a Scheduled Transaction has transactionValidStart and accountIDs inherited from the
* ScheduleCreate transaction that created it. That is to say that they are equal
* - The scheduled property is true for Scheduled Transactions
* - transactionValidStart, accountID and scheduled properties should be omitted
*
*
* Protobuf type {@code proto.TransactionID}
*/
public final class TransactionID extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:proto.TransactionID)
TransactionIDOrBuilder {
private static final long serialVersionUID = 0L;
// Use TransactionID.newBuilder() to construct.
private TransactionID(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private TransactionID() {
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new TransactionID();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hedera.hashgraph.sdk.proto.BasicTypes.internal_static_proto_TransactionID_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hedera.hashgraph.sdk.proto.BasicTypes.internal_static_proto_TransactionID_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hedera.hashgraph.sdk.proto.TransactionID.class, com.hedera.hashgraph.sdk.proto.TransactionID.Builder.class);
}
private int bitField0_;
public static final int TRANSACTIONVALIDSTART_FIELD_NUMBER = 1;
private com.hedera.hashgraph.sdk.proto.Timestamp transactionValidStart_;
/**
*
**
* The transaction is invalid if consensusTimestamp < transactionID.transactionStartValid
*
*
* .proto.Timestamp transactionValidStart = 1;
* @return Whether the transactionValidStart field is set.
*/
@java.lang.Override
public boolean hasTransactionValidStart() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
**
* The transaction is invalid if consensusTimestamp < transactionID.transactionStartValid
*
*
* .proto.Timestamp transactionValidStart = 1;
* @return The transactionValidStart.
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.Timestamp getTransactionValidStart() {
return transactionValidStart_ == null ? com.hedera.hashgraph.sdk.proto.Timestamp.getDefaultInstance() : transactionValidStart_;
}
/**
*
**
* The transaction is invalid if consensusTimestamp < transactionID.transactionStartValid
*
*
* .proto.Timestamp transactionValidStart = 1;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.TimestampOrBuilder getTransactionValidStartOrBuilder() {
return transactionValidStart_ == null ? com.hedera.hashgraph.sdk.proto.Timestamp.getDefaultInstance() : transactionValidStart_;
}
public static final int ACCOUNTID_FIELD_NUMBER = 2;
private com.hedera.hashgraph.sdk.proto.AccountID accountID_;
/**
*
**
* The Account ID that paid for this transaction
*
*
* .proto.AccountID accountID = 2;
* @return Whether the accountID field is set.
*/
@java.lang.Override
public boolean hasAccountID() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
**
* The Account ID that paid for this transaction
*
*
* .proto.AccountID accountID = 2;
* @return The accountID.
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.AccountID getAccountID() {
return accountID_ == null ? com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance() : accountID_;
}
/**
*
**
* The Account ID that paid for this transaction
*
*
* .proto.AccountID accountID = 2;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder getAccountIDOrBuilder() {
return accountID_ == null ? com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance() : accountID_;
}
public static final int SCHEDULED_FIELD_NUMBER = 3;
private boolean scheduled_ = false;
/**
*
**
* Whether the Transaction is of type Scheduled or no
*
*
* bool scheduled = 3;
* @return The scheduled.
*/
@java.lang.Override
public boolean getScheduled() {
return scheduled_;
}
public static final int NONCE_FIELD_NUMBER = 4;
private int nonce_ = 0;
/**
*
**
* The identifier for an internal transaction that was spawned as part
* of handling a user transaction. (These internal transactions share the
* transactionValidStart and accountID of the user transaction, so a
* nonce is necessary to give them a unique TransactionID.)
*
* An example is when a "parent" ContractCreate or ContractCall transaction
* calls one or more HTS precompiled contracts; each of the "child"
* transactions spawned for a precompile has a id with a different nonce.
*
*
* int32 nonce = 4;
* @return The nonce.
*/
@java.lang.Override
public int getNonce() {
return nonce_;
}
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, getTransactionValidStart());
}
if (((bitField0_ & 0x00000002) != 0)) {
output.writeMessage(2, getAccountID());
}
if (scheduled_ != false) {
output.writeBool(3, scheduled_);
}
if (nonce_ != 0) {
output.writeInt32(4, nonce_);
}
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, getTransactionValidStart());
}
if (((bitField0_ & 0x00000002) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getAccountID());
}
if (scheduled_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(3, scheduled_);
}
if (nonce_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(4, nonce_);
}
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.TransactionID)) {
return super.equals(obj);
}
com.hedera.hashgraph.sdk.proto.TransactionID other = (com.hedera.hashgraph.sdk.proto.TransactionID) obj;
if (hasTransactionValidStart() != other.hasTransactionValidStart()) return false;
if (hasTransactionValidStart()) {
if (!getTransactionValidStart()
.equals(other.getTransactionValidStart())) return false;
}
if (hasAccountID() != other.hasAccountID()) return false;
if (hasAccountID()) {
if (!getAccountID()
.equals(other.getAccountID())) return false;
}
if (getScheduled()
!= other.getScheduled()) return false;
if (getNonce()
!= other.getNonce()) 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 (hasTransactionValidStart()) {
hash = (37 * hash) + TRANSACTIONVALIDSTART_FIELD_NUMBER;
hash = (53 * hash) + getTransactionValidStart().hashCode();
}
if (hasAccountID()) {
hash = (37 * hash) + ACCOUNTID_FIELD_NUMBER;
hash = (53 * hash) + getAccountID().hashCode();
}
hash = (37 * hash) + SCHEDULED_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getScheduled());
hash = (37 * hash) + NONCE_FIELD_NUMBER;
hash = (53 * hash) + getNonce();
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.hedera.hashgraph.sdk.proto.TransactionID parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.hashgraph.sdk.proto.TransactionID 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.TransactionID parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.hashgraph.sdk.proto.TransactionID 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.TransactionID parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.hashgraph.sdk.proto.TransactionID 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.TransactionID parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hedera.hashgraph.sdk.proto.TransactionID 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.TransactionID parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.hedera.hashgraph.sdk.proto.TransactionID 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.TransactionID 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.TransactionID 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.TransactionID 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;
}
/**
*
**
* The ID for a transaction. This is used for retrieving receipts and records for a transaction, for
* appending to a file right after creating it, for instantiating a smart contract with bytecode in
* a file just created, and internally by the network for detecting when duplicate transactions are
* submitted. A user might get a transaction processed faster by submitting it to N nodes, each with
* a different node account, but all with the same TransactionID. Then, the transaction will take
* effect when the first of all those nodes submits the transaction and it reaches consensus. The
* other transactions will not take effect. So this could make the transaction take effect faster,
* if any given node might be slow. However, the full transaction fee is charged for each
* transaction, so the total fee is N times as much if the transaction is sent to N nodes.
*
* Applicable to Scheduled Transactions:
* - The ID of a Scheduled Transaction has transactionValidStart and accountIDs inherited from the
* ScheduleCreate transaction that created it. That is to say that they are equal
* - The scheduled property is true for Scheduled Transactions
* - transactionValidStart, accountID and scheduled properties should be omitted
*
*
* Protobuf type {@code proto.TransactionID}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:proto.TransactionID)
com.hedera.hashgraph.sdk.proto.TransactionIDOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hedera.hashgraph.sdk.proto.BasicTypes.internal_static_proto_TransactionID_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hedera.hashgraph.sdk.proto.BasicTypes.internal_static_proto_TransactionID_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hedera.hashgraph.sdk.proto.TransactionID.class, com.hedera.hashgraph.sdk.proto.TransactionID.Builder.class);
}
// Construct using com.hedera.hashgraph.sdk.proto.TransactionID.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getTransactionValidStartFieldBuilder();
getAccountIDFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
transactionValidStart_ = null;
if (transactionValidStartBuilder_ != null) {
transactionValidStartBuilder_.dispose();
transactionValidStartBuilder_ = null;
}
accountID_ = null;
if (accountIDBuilder_ != null) {
accountIDBuilder_.dispose();
accountIDBuilder_ = null;
}
scheduled_ = false;
nonce_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.hedera.hashgraph.sdk.proto.BasicTypes.internal_static_proto_TransactionID_descriptor;
}
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.TransactionID getDefaultInstanceForType() {
return com.hedera.hashgraph.sdk.proto.TransactionID.getDefaultInstance();
}
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.TransactionID build() {
com.hedera.hashgraph.sdk.proto.TransactionID result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.TransactionID buildPartial() {
com.hedera.hashgraph.sdk.proto.TransactionID result = new com.hedera.hashgraph.sdk.proto.TransactionID(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(com.hedera.hashgraph.sdk.proto.TransactionID result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.transactionValidStart_ = transactionValidStartBuilder_ == null
? transactionValidStart_
: transactionValidStartBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.accountID_ = accountIDBuilder_ == null
? accountID_
: accountIDBuilder_.build();
to_bitField0_ |= 0x00000002;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.scheduled_ = scheduled_;
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.nonce_ = nonce_;
}
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.TransactionID) {
return mergeFrom((com.hedera.hashgraph.sdk.proto.TransactionID)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.hedera.hashgraph.sdk.proto.TransactionID other) {
if (other == com.hedera.hashgraph.sdk.proto.TransactionID.getDefaultInstance()) return this;
if (other.hasTransactionValidStart()) {
mergeTransactionValidStart(other.getTransactionValidStart());
}
if (other.hasAccountID()) {
mergeAccountID(other.getAccountID());
}
if (other.getScheduled() != false) {
setScheduled(other.getScheduled());
}
if (other.getNonce() != 0) {
setNonce(other.getNonce());
}
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(
getTransactionValidStartFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
input.readMessage(
getAccountIDFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000002;
break;
} // case 18
case 24: {
scheduled_ = input.readBool();
bitField0_ |= 0x00000004;
break;
} // case 24
case 32: {
nonce_ = input.readInt32();
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.Timestamp transactionValidStart_;
private com.google.protobuf.SingleFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.Timestamp, com.hedera.hashgraph.sdk.proto.Timestamp.Builder, com.hedera.hashgraph.sdk.proto.TimestampOrBuilder> transactionValidStartBuilder_;
/**
*
**
* The transaction is invalid if consensusTimestamp < transactionID.transactionStartValid
*
*
* .proto.Timestamp transactionValidStart = 1;
* @return Whether the transactionValidStart field is set.
*/
public boolean hasTransactionValidStart() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
**
* The transaction is invalid if consensusTimestamp < transactionID.transactionStartValid
*
*
* .proto.Timestamp transactionValidStart = 1;
* @return The transactionValidStart.
*/
public com.hedera.hashgraph.sdk.proto.Timestamp getTransactionValidStart() {
if (transactionValidStartBuilder_ == null) {
return transactionValidStart_ == null ? com.hedera.hashgraph.sdk.proto.Timestamp.getDefaultInstance() : transactionValidStart_;
} else {
return transactionValidStartBuilder_.getMessage();
}
}
/**
*
**
* The transaction is invalid if consensusTimestamp < transactionID.transactionStartValid
*
*
* .proto.Timestamp transactionValidStart = 1;
*/
public Builder setTransactionValidStart(com.hedera.hashgraph.sdk.proto.Timestamp value) {
if (transactionValidStartBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
transactionValidStart_ = value;
} else {
transactionValidStartBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
**
* The transaction is invalid if consensusTimestamp < transactionID.transactionStartValid
*
*
* .proto.Timestamp transactionValidStart = 1;
*/
public Builder setTransactionValidStart(
com.hedera.hashgraph.sdk.proto.Timestamp.Builder builderForValue) {
if (transactionValidStartBuilder_ == null) {
transactionValidStart_ = builderForValue.build();
} else {
transactionValidStartBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
**
* The transaction is invalid if consensusTimestamp < transactionID.transactionStartValid
*
*
* .proto.Timestamp transactionValidStart = 1;
*/
public Builder mergeTransactionValidStart(com.hedera.hashgraph.sdk.proto.Timestamp value) {
if (transactionValidStartBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0) &&
transactionValidStart_ != null &&
transactionValidStart_ != com.hedera.hashgraph.sdk.proto.Timestamp.getDefaultInstance()) {
getTransactionValidStartBuilder().mergeFrom(value);
} else {
transactionValidStart_ = value;
}
} else {
transactionValidStartBuilder_.mergeFrom(value);
}
if (transactionValidStart_ != null) {
bitField0_ |= 0x00000001;
onChanged();
}
return this;
}
/**
*
**
* The transaction is invalid if consensusTimestamp < transactionID.transactionStartValid
*
*
* .proto.Timestamp transactionValidStart = 1;
*/
public Builder clearTransactionValidStart() {
bitField0_ = (bitField0_ & ~0x00000001);
transactionValidStart_ = null;
if (transactionValidStartBuilder_ != null) {
transactionValidStartBuilder_.dispose();
transactionValidStartBuilder_ = null;
}
onChanged();
return this;
}
/**
*
**
* The transaction is invalid if consensusTimestamp < transactionID.transactionStartValid
*
*
* .proto.Timestamp transactionValidStart = 1;
*/
public com.hedera.hashgraph.sdk.proto.Timestamp.Builder getTransactionValidStartBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getTransactionValidStartFieldBuilder().getBuilder();
}
/**
*
**
* The transaction is invalid if consensusTimestamp < transactionID.transactionStartValid
*
*
* .proto.Timestamp transactionValidStart = 1;
*/
public com.hedera.hashgraph.sdk.proto.TimestampOrBuilder getTransactionValidStartOrBuilder() {
if (transactionValidStartBuilder_ != null) {
return transactionValidStartBuilder_.getMessageOrBuilder();
} else {
return transactionValidStart_ == null ?
com.hedera.hashgraph.sdk.proto.Timestamp.getDefaultInstance() : transactionValidStart_;
}
}
/**
*
**
* The transaction is invalid if consensusTimestamp < transactionID.transactionStartValid
*
*
* .proto.Timestamp transactionValidStart = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.Timestamp, com.hedera.hashgraph.sdk.proto.Timestamp.Builder, com.hedera.hashgraph.sdk.proto.TimestampOrBuilder>
getTransactionValidStartFieldBuilder() {
if (transactionValidStartBuilder_ == null) {
transactionValidStartBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.Timestamp, com.hedera.hashgraph.sdk.proto.Timestamp.Builder, com.hedera.hashgraph.sdk.proto.TimestampOrBuilder>(
getTransactionValidStart(),
getParentForChildren(),
isClean());
transactionValidStart_ = null;
}
return transactionValidStartBuilder_;
}
private com.hedera.hashgraph.sdk.proto.AccountID accountID_;
private com.google.protobuf.SingleFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.AccountID, com.hedera.hashgraph.sdk.proto.AccountID.Builder, com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder> accountIDBuilder_;
/**
*
**
* The Account ID that paid for this transaction
*
*
* .proto.AccountID accountID = 2;
* @return Whether the accountID field is set.
*/
public boolean hasAccountID() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
**
* The Account ID that paid for this transaction
*
*
* .proto.AccountID accountID = 2;
* @return The accountID.
*/
public com.hedera.hashgraph.sdk.proto.AccountID getAccountID() {
if (accountIDBuilder_ == null) {
return accountID_ == null ? com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance() : accountID_;
} else {
return accountIDBuilder_.getMessage();
}
}
/**
*
**
* The Account ID that paid for this transaction
*
*
* .proto.AccountID accountID = 2;
*/
public Builder setAccountID(com.hedera.hashgraph.sdk.proto.AccountID value) {
if (accountIDBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
accountID_ = value;
} else {
accountIDBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
**
* The Account ID that paid for this transaction
*
*
* .proto.AccountID accountID = 2;
*/
public Builder setAccountID(
com.hedera.hashgraph.sdk.proto.AccountID.Builder builderForValue) {
if (accountIDBuilder_ == null) {
accountID_ = builderForValue.build();
} else {
accountIDBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
**
* The Account ID that paid for this transaction
*
*
* .proto.AccountID accountID = 2;
*/
public Builder mergeAccountID(com.hedera.hashgraph.sdk.proto.AccountID value) {
if (accountIDBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0) &&
accountID_ != null &&
accountID_ != com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance()) {
getAccountIDBuilder().mergeFrom(value);
} else {
accountID_ = value;
}
} else {
accountIDBuilder_.mergeFrom(value);
}
if (accountID_ != null) {
bitField0_ |= 0x00000002;
onChanged();
}
return this;
}
/**
*
**
* The Account ID that paid for this transaction
*
*
* .proto.AccountID accountID = 2;
*/
public Builder clearAccountID() {
bitField0_ = (bitField0_ & ~0x00000002);
accountID_ = null;
if (accountIDBuilder_ != null) {
accountIDBuilder_.dispose();
accountIDBuilder_ = null;
}
onChanged();
return this;
}
/**
*
**
* The Account ID that paid for this transaction
*
*
* .proto.AccountID accountID = 2;
*/
public com.hedera.hashgraph.sdk.proto.AccountID.Builder getAccountIDBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getAccountIDFieldBuilder().getBuilder();
}
/**
*
**
* The Account ID that paid for this transaction
*
*
* .proto.AccountID accountID = 2;
*/
public com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder getAccountIDOrBuilder() {
if (accountIDBuilder_ != null) {
return accountIDBuilder_.getMessageOrBuilder();
} else {
return accountID_ == null ?
com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance() : accountID_;
}
}
/**
*
**
* The Account ID that paid for this transaction
*
*
* .proto.AccountID accountID = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.AccountID, com.hedera.hashgraph.sdk.proto.AccountID.Builder, com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder>
getAccountIDFieldBuilder() {
if (accountIDBuilder_ == null) {
accountIDBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.AccountID, com.hedera.hashgraph.sdk.proto.AccountID.Builder, com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder>(
getAccountID(),
getParentForChildren(),
isClean());
accountID_ = null;
}
return accountIDBuilder_;
}
private boolean scheduled_ ;
/**
*
**
* Whether the Transaction is of type Scheduled or no
*
*
* bool scheduled = 3;
* @return The scheduled.
*/
@java.lang.Override
public boolean getScheduled() {
return scheduled_;
}
/**
*
**
* Whether the Transaction is of type Scheduled or no
*
*
* bool scheduled = 3;
* @param value The scheduled to set.
* @return This builder for chaining.
*/
public Builder setScheduled(boolean value) {
scheduled_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
**
* Whether the Transaction is of type Scheduled or no
*
*
* bool scheduled = 3;
* @return This builder for chaining.
*/
public Builder clearScheduled() {
bitField0_ = (bitField0_ & ~0x00000004);
scheduled_ = false;
onChanged();
return this;
}
private int nonce_ ;
/**
*
**
* The identifier for an internal transaction that was spawned as part
* of handling a user transaction. (These internal transactions share the
* transactionValidStart and accountID of the user transaction, so a
* nonce is necessary to give them a unique TransactionID.)
*
* An example is when a "parent" ContractCreate or ContractCall transaction
* calls one or more HTS precompiled contracts; each of the "child"
* transactions spawned for a precompile has a id with a different nonce.
*
*
* int32 nonce = 4;
* @return The nonce.
*/
@java.lang.Override
public int getNonce() {
return nonce_;
}
/**
*
**
* The identifier for an internal transaction that was spawned as part
* of handling a user transaction. (These internal transactions share the
* transactionValidStart and accountID of the user transaction, so a
* nonce is necessary to give them a unique TransactionID.)
*
* An example is when a "parent" ContractCreate or ContractCall transaction
* calls one or more HTS precompiled contracts; each of the "child"
* transactions spawned for a precompile has a id with a different nonce.
*
*
* int32 nonce = 4;
* @param value The nonce to set.
* @return This builder for chaining.
*/
public Builder setNonce(int value) {
nonce_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
**
* The identifier for an internal transaction that was spawned as part
* of handling a user transaction. (These internal transactions share the
* transactionValidStart and accountID of the user transaction, so a
* nonce is necessary to give them a unique TransactionID.)
*
* An example is when a "parent" ContractCreate or ContractCall transaction
* calls one or more HTS precompiled contracts; each of the "child"
* transactions spawned for a precompile has a id with a different nonce.
*
*
* int32 nonce = 4;
* @return This builder for chaining.
*/
public Builder clearNonce() {
bitField0_ = (bitField0_ & ~0x00000008);
nonce_ = 0;
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.TransactionID)
}
// @@protoc_insertion_point(class_scope:proto.TransactionID)
private static final com.hedera.hashgraph.sdk.proto.TransactionID DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.hedera.hashgraph.sdk.proto.TransactionID();
}
public static com.hedera.hashgraph.sdk.proto.TransactionID getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public TransactionID 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.TransactionID getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}