com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: token_unfreeze_account.proto
package com.hederahashgraph.api.proto.java;
/**
*
**
* Unfreezes transfers of the specified token for the account. Must be signed by the Token's
* freezeKey.
* If the provided account is not found, the transaction will resolve to INVALID_ACCOUNT_ID.
* If the provided account has been deleted, the transaction will resolve to ACCOUNT_DELETED.
* If the provided token is not found, the transaction will resolve to INVALID_TOKEN_ID.
* If the provided token has been deleted, the transaction will resolve to TOKEN_WAS_DELETED.
* If an Association between the provided token and account is not found, the transaction will
* resolve to TOKEN_NOT_ASSOCIATED_TO_ACCOUNT.
* If no Freeze Key is defined, the transaction will resolve to TOKEN_HAS_NO_FREEZE_KEY.
* Once executed the Account is marked as Unfrozen and will be able to receive or send tokens. The
* operation is idempotent.
*
*
* Protobuf type {@code proto.TokenUnfreezeAccountTransactionBody}
*/
public final class TokenUnfreezeAccountTransactionBody extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:proto.TokenUnfreezeAccountTransactionBody)
TokenUnfreezeAccountTransactionBodyOrBuilder {
private static final long serialVersionUID = 0L;
// Use TokenUnfreezeAccountTransactionBody.newBuilder() to construct.
private TokenUnfreezeAccountTransactionBody(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private TokenUnfreezeAccountTransactionBody() {
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new TokenUnfreezeAccountTransactionBody();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private TokenUnfreezeAccountTransactionBody(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
com.hederahashgraph.api.proto.java.TokenID.Builder subBuilder = null;
if (token_ != null) {
subBuilder = token_.toBuilder();
}
token_ = input.readMessage(com.hederahashgraph.api.proto.java.TokenID.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(token_);
token_ = subBuilder.buildPartial();
}
break;
}
case 18: {
com.hederahashgraph.api.proto.java.AccountID.Builder subBuilder = null;
if (account_ != null) {
subBuilder = account_.toBuilder();
}
account_ = input.readMessage(com.hederahashgraph.api.proto.java.AccountID.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(account_);
account_ = subBuilder.buildPartial();
}
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hederahashgraph.api.proto.java.TokenUnfreezeAccount.internal_static_proto_TokenUnfreezeAccountTransactionBody_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hederahashgraph.api.proto.java.TokenUnfreezeAccount.internal_static_proto_TokenUnfreezeAccountTransactionBody_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody.class, com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody.Builder.class);
}
public static final int TOKEN_FIELD_NUMBER = 1;
private com.hederahashgraph.api.proto.java.TokenID token_;
/**
*
**
* The token for which this account will be unfrozen. If token does not exist, transaction
* results in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
* @return Whether the token field is set.
*/
@java.lang.Override
public boolean hasToken() {
return token_ != null;
}
/**
*
**
* The token for which this account will be unfrozen. If token does not exist, transaction
* results in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
* @return The token.
*/
@java.lang.Override
public com.hederahashgraph.api.proto.java.TokenID getToken() {
return token_ == null ? com.hederahashgraph.api.proto.java.TokenID.getDefaultInstance() : token_;
}
/**
*
**
* The token for which this account will be unfrozen. If token does not exist, transaction
* results in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
*/
@java.lang.Override
public com.hederahashgraph.api.proto.java.TokenIDOrBuilder getTokenOrBuilder() {
return getToken();
}
public static final int ACCOUNT_FIELD_NUMBER = 2;
private com.hederahashgraph.api.proto.java.AccountID account_;
/**
*
**
* The account to be unfrozen
*
*
* .proto.AccountID account = 2;
* @return Whether the account field is set.
*/
@java.lang.Override
public boolean hasAccount() {
return account_ != null;
}
/**
*
**
* The account to be unfrozen
*
*
* .proto.AccountID account = 2;
* @return The account.
*/
@java.lang.Override
public com.hederahashgraph.api.proto.java.AccountID getAccount() {
return account_ == null ? com.hederahashgraph.api.proto.java.AccountID.getDefaultInstance() : account_;
}
/**
*
**
* The account to be unfrozen
*
*
* .proto.AccountID account = 2;
*/
@java.lang.Override
public com.hederahashgraph.api.proto.java.AccountIDOrBuilder getAccountOrBuilder() {
return getAccount();
}
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 (token_ != null) {
output.writeMessage(1, getToken());
}
if (account_ != null) {
output.writeMessage(2, getAccount());
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (token_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getToken());
}
if (account_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getAccount());
}
size += unknownFields.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.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody)) {
return super.equals(obj);
}
com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody other = (com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody) obj;
if (hasToken() != other.hasToken()) return false;
if (hasToken()) {
if (!getToken()
.equals(other.getToken())) return false;
}
if (hasAccount() != other.hasAccount()) return false;
if (hasAccount()) {
if (!getAccount()
.equals(other.getAccount())) return false;
}
if (!unknownFields.equals(other.unknownFields)) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasToken()) {
hash = (37 * hash) + TOKEN_FIELD_NUMBER;
hash = (53 * hash) + getToken().hashCode();
}
if (hasAccount()) {
hash = (37 * hash) + ACCOUNT_FIELD_NUMBER;
hash = (53 * hash) + getAccount().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody 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.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody 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.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody 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.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody 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;
}
/**
*
**
* Unfreezes transfers of the specified token for the account. Must be signed by the Token's
* freezeKey.
* If the provided account is not found, the transaction will resolve to INVALID_ACCOUNT_ID.
* If the provided account has been deleted, the transaction will resolve to ACCOUNT_DELETED.
* If the provided token is not found, the transaction will resolve to INVALID_TOKEN_ID.
* If the provided token has been deleted, the transaction will resolve to TOKEN_WAS_DELETED.
* If an Association between the provided token and account is not found, the transaction will
* resolve to TOKEN_NOT_ASSOCIATED_TO_ACCOUNT.
* If no Freeze Key is defined, the transaction will resolve to TOKEN_HAS_NO_FREEZE_KEY.
* Once executed the Account is marked as Unfrozen and will be able to receive or send tokens. The
* operation is idempotent.
*
*
* Protobuf type {@code proto.TokenUnfreezeAccountTransactionBody}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:proto.TokenUnfreezeAccountTransactionBody)
com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBodyOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hederahashgraph.api.proto.java.TokenUnfreezeAccount.internal_static_proto_TokenUnfreezeAccountTransactionBody_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hederahashgraph.api.proto.java.TokenUnfreezeAccount.internal_static_proto_TokenUnfreezeAccountTransactionBody_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody.class, com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody.Builder.class);
}
// Construct using com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (tokenBuilder_ == null) {
token_ = null;
} else {
token_ = null;
tokenBuilder_ = null;
}
if (accountBuilder_ == null) {
account_ = null;
} else {
account_ = null;
accountBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.hederahashgraph.api.proto.java.TokenUnfreezeAccount.internal_static_proto_TokenUnfreezeAccountTransactionBody_descriptor;
}
@java.lang.Override
public com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody getDefaultInstanceForType() {
return com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody.getDefaultInstance();
}
@java.lang.Override
public com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody build() {
com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody buildPartial() {
com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody result = new com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody(this);
if (tokenBuilder_ == null) {
result.token_ = token_;
} else {
result.token_ = tokenBuilder_.build();
}
if (accountBuilder_ == null) {
result.account_ = account_;
} else {
result.account_ = accountBuilder_.build();
}
onBuilt();
return result;
}
@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.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody) {
return mergeFrom((com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody other) {
if (other == com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody.getDefaultInstance()) return this;
if (other.hasToken()) {
mergeToken(other.getToken());
}
if (other.hasAccount()) {
mergeAccount(other.getAccount());
}
this.mergeUnknownFields(other.unknownFields);
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 {
com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private com.hederahashgraph.api.proto.java.TokenID token_;
private com.google.protobuf.SingleFieldBuilderV3<
com.hederahashgraph.api.proto.java.TokenID, com.hederahashgraph.api.proto.java.TokenID.Builder, com.hederahashgraph.api.proto.java.TokenIDOrBuilder> tokenBuilder_;
/**
*
**
* The token for which this account will be unfrozen. If token does not exist, transaction
* results in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
* @return Whether the token field is set.
*/
public boolean hasToken() {
return tokenBuilder_ != null || token_ != null;
}
/**
*
**
* The token for which this account will be unfrozen. If token does not exist, transaction
* results in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
* @return The token.
*/
public com.hederahashgraph.api.proto.java.TokenID getToken() {
if (tokenBuilder_ == null) {
return token_ == null ? com.hederahashgraph.api.proto.java.TokenID.getDefaultInstance() : token_;
} else {
return tokenBuilder_.getMessage();
}
}
/**
*
**
* The token for which this account will be unfrozen. If token does not exist, transaction
* results in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
*/
public Builder setToken(com.hederahashgraph.api.proto.java.TokenID value) {
if (tokenBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
token_ = value;
onChanged();
} else {
tokenBuilder_.setMessage(value);
}
return this;
}
/**
*
**
* The token for which this account will be unfrozen. If token does not exist, transaction
* results in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
*/
public Builder setToken(
com.hederahashgraph.api.proto.java.TokenID.Builder builderForValue) {
if (tokenBuilder_ == null) {
token_ = builderForValue.build();
onChanged();
} else {
tokenBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
**
* The token for which this account will be unfrozen. If token does not exist, transaction
* results in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
*/
public Builder mergeToken(com.hederahashgraph.api.proto.java.TokenID value) {
if (tokenBuilder_ == null) {
if (token_ != null) {
token_ =
com.hederahashgraph.api.proto.java.TokenID.newBuilder(token_).mergeFrom(value).buildPartial();
} else {
token_ = value;
}
onChanged();
} else {
tokenBuilder_.mergeFrom(value);
}
return this;
}
/**
*
**
* The token for which this account will be unfrozen. If token does not exist, transaction
* results in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
*/
public Builder clearToken() {
if (tokenBuilder_ == null) {
token_ = null;
onChanged();
} else {
token_ = null;
tokenBuilder_ = null;
}
return this;
}
/**
*
**
* The token for which this account will be unfrozen. If token does not exist, transaction
* results in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
*/
public com.hederahashgraph.api.proto.java.TokenID.Builder getTokenBuilder() {
onChanged();
return getTokenFieldBuilder().getBuilder();
}
/**
*
**
* The token for which this account will be unfrozen. If token does not exist, transaction
* results in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
*/
public com.hederahashgraph.api.proto.java.TokenIDOrBuilder getTokenOrBuilder() {
if (tokenBuilder_ != null) {
return tokenBuilder_.getMessageOrBuilder();
} else {
return token_ == null ?
com.hederahashgraph.api.proto.java.TokenID.getDefaultInstance() : token_;
}
}
/**
*
**
* The token for which this account will be unfrozen. If token does not exist, transaction
* results in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.hederahashgraph.api.proto.java.TokenID, com.hederahashgraph.api.proto.java.TokenID.Builder, com.hederahashgraph.api.proto.java.TokenIDOrBuilder>
getTokenFieldBuilder() {
if (tokenBuilder_ == null) {
tokenBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.hederahashgraph.api.proto.java.TokenID, com.hederahashgraph.api.proto.java.TokenID.Builder, com.hederahashgraph.api.proto.java.TokenIDOrBuilder>(
getToken(),
getParentForChildren(),
isClean());
token_ = null;
}
return tokenBuilder_;
}
private com.hederahashgraph.api.proto.java.AccountID account_;
private com.google.protobuf.SingleFieldBuilderV3<
com.hederahashgraph.api.proto.java.AccountID, com.hederahashgraph.api.proto.java.AccountID.Builder, com.hederahashgraph.api.proto.java.AccountIDOrBuilder> accountBuilder_;
/**
*
**
* The account to be unfrozen
*
*
* .proto.AccountID account = 2;
* @return Whether the account field is set.
*/
public boolean hasAccount() {
return accountBuilder_ != null || account_ != null;
}
/**
*
**
* The account to be unfrozen
*
*
* .proto.AccountID account = 2;
* @return The account.
*/
public com.hederahashgraph.api.proto.java.AccountID getAccount() {
if (accountBuilder_ == null) {
return account_ == null ? com.hederahashgraph.api.proto.java.AccountID.getDefaultInstance() : account_;
} else {
return accountBuilder_.getMessage();
}
}
/**
*
**
* The account to be unfrozen
*
*
* .proto.AccountID account = 2;
*/
public Builder setAccount(com.hederahashgraph.api.proto.java.AccountID value) {
if (accountBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
account_ = value;
onChanged();
} else {
accountBuilder_.setMessage(value);
}
return this;
}
/**
*
**
* The account to be unfrozen
*
*
* .proto.AccountID account = 2;
*/
public Builder setAccount(
com.hederahashgraph.api.proto.java.AccountID.Builder builderForValue) {
if (accountBuilder_ == null) {
account_ = builderForValue.build();
onChanged();
} else {
accountBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
**
* The account to be unfrozen
*
*
* .proto.AccountID account = 2;
*/
public Builder mergeAccount(com.hederahashgraph.api.proto.java.AccountID value) {
if (accountBuilder_ == null) {
if (account_ != null) {
account_ =
com.hederahashgraph.api.proto.java.AccountID.newBuilder(account_).mergeFrom(value).buildPartial();
} else {
account_ = value;
}
onChanged();
} else {
accountBuilder_.mergeFrom(value);
}
return this;
}
/**
*
**
* The account to be unfrozen
*
*
* .proto.AccountID account = 2;
*/
public Builder clearAccount() {
if (accountBuilder_ == null) {
account_ = null;
onChanged();
} else {
account_ = null;
accountBuilder_ = null;
}
return this;
}
/**
*
**
* The account to be unfrozen
*
*
* .proto.AccountID account = 2;
*/
public com.hederahashgraph.api.proto.java.AccountID.Builder getAccountBuilder() {
onChanged();
return getAccountFieldBuilder().getBuilder();
}
/**
*
**
* The account to be unfrozen
*
*
* .proto.AccountID account = 2;
*/
public com.hederahashgraph.api.proto.java.AccountIDOrBuilder getAccountOrBuilder() {
if (accountBuilder_ != null) {
return accountBuilder_.getMessageOrBuilder();
} else {
return account_ == null ?
com.hederahashgraph.api.proto.java.AccountID.getDefaultInstance() : account_;
}
}
/**
*
**
* The account to be unfrozen
*
*
* .proto.AccountID account = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.hederahashgraph.api.proto.java.AccountID, com.hederahashgraph.api.proto.java.AccountID.Builder, com.hederahashgraph.api.proto.java.AccountIDOrBuilder>
getAccountFieldBuilder() {
if (accountBuilder_ == null) {
accountBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.hederahashgraph.api.proto.java.AccountID, com.hederahashgraph.api.proto.java.AccountID.Builder, com.hederahashgraph.api.proto.java.AccountIDOrBuilder>(
getAccount(),
getParentForChildren(),
isClean());
account_ = null;
}
return accountBuilder_;
}
@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.TokenUnfreezeAccountTransactionBody)
}
// @@protoc_insertion_point(class_scope:proto.TokenUnfreezeAccountTransactionBody)
private static final com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody();
}
public static com.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public TokenUnfreezeAccountTransactionBody parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new TokenUnfreezeAccountTransactionBody(input, extensionRegistry);
}
};
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.hederahashgraph.api.proto.java.TokenUnfreezeAccountTransactionBody getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}