com.hedera.hashgraph.sdk.AccountDeleteTransaction Maven / Gradle / Ivy
Show all versions of sdk-full Show documentation
/*-
*
* Hedera Java SDK
*
* Copyright (C) 2020 - 2024 Hedera Hashgraph, LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package com.hedera.hashgraph.sdk;
import com.google.protobuf.InvalidProtocolBufferException;
import com.hedera.hashgraph.sdk.proto.CryptoDeleteTransactionBody;
import com.hedera.hashgraph.sdk.proto.CryptoServiceGrpc;
import com.hedera.hashgraph.sdk.proto.SchedulableTransactionBody;
import com.hedera.hashgraph.sdk.proto.TransactionBody;
import com.hedera.hashgraph.sdk.proto.TransactionResponse;
import io.grpc.MethodDescriptor;
import javax.annotation.Nullable;
import java.util.LinkedHashMap;
import java.util.Objects;
/**
* Marks an account as deleted, moving all its current hbars to another account.
*
* It will remain in the ledger, marked as deleted, until it expires.
* Transfers into it a deleted account fail. But a deleted account can still have its
* expiration extended in the normal way.
*/
public final class AccountDeleteTransaction extends Transaction {
@Nullable
private AccountId accountId = null;
@Nullable
private AccountId transferAccountId = null;
/**
* Constructor.
*/
public AccountDeleteTransaction() {
}
/**
* Constructor.
*
* @param txs Compound list of transaction id's list of (AccountId, Transaction) records
* @throws InvalidProtocolBufferException when there is an issue with the protobuf
*/
AccountDeleteTransaction(LinkedHashMap> txs) throws InvalidProtocolBufferException {
super(txs);
initFromTransactionBody();
}
/**
* Constructor.
*
* @param txBody protobuf TransactionBody
*/
AccountDeleteTransaction(com.hedera.hashgraph.sdk.proto.TransactionBody txBody) {
super(txBody);
initFromTransactionBody();
}
/**
* Extract the account id.
*
* @return the account id
*/
@Nullable
public AccountId getAccountId() {
return accountId;
}
/**
* Sets the account ID which should be deleted.
*
* @param deleteAccountId The AccountId to be set
* @return {@code this}
*/
public AccountDeleteTransaction setAccountId(AccountId deleteAccountId) {
Objects.requireNonNull(deleteAccountId);
requireNotFrozen();
this.accountId = deleteAccountId;
return this;
}
/**
* Extract the receiving account id.
*
* @return the account id that receives the hbar
*/
@Nullable
public AccountId getTransferAccountId() {
return transferAccountId;
}
/**
* Sets the account ID which will receive all remaining hbars.
*
* @param transferAccountId The AccountId to be set
* @return {@code this}
*/
public AccountDeleteTransaction setTransferAccountId(AccountId transferAccountId) {
requireNotFrozen();
Objects.requireNonNull(transferAccountId);
this.transferAccountId = transferAccountId;
return this;
}
@Override
void validateChecksums(Client client) throws BadEntityIdException {
if (accountId != null) {
accountId.validateChecksum(client);
}
if (transferAccountId != null) {
transferAccountId.validateChecksum(client);
}
}
@Override
MethodDescriptor getMethodDescriptor() {
return CryptoServiceGrpc.getCryptoDeleteMethod();
}
/**
* Build the transaction body.
*
* @return {@link CryptoDeleteTransactionBody}
*/
CryptoDeleteTransactionBody.Builder build() {
var builder = CryptoDeleteTransactionBody.newBuilder();
if (accountId != null) {
builder.setDeleteAccountID(accountId.toProtobuf());
}
if (transferAccountId != null) {
builder.setTransferAccountID(transferAccountId.toProtobuf());
}
return builder;
}
/**
* Initialize from the transaction body.
*/
void initFromTransactionBody() {
var body = sourceTransactionBody.getCryptoDelete();
if (body.hasDeleteAccountID()) {
accountId = AccountId.fromProtobuf(body.getDeleteAccountID());
}
if (body.hasTransferAccountID()) {
transferAccountId = AccountId.fromProtobuf(body.getTransferAccountID());
}
}
@Override
void onFreeze(TransactionBody.Builder bodyBuilder) {
bodyBuilder.setCryptoDelete(build());
}
@Override
void onScheduled(SchedulableTransactionBody.Builder scheduled) {
scheduled.setCryptoDelete(build());
}
}