com.hedera.hashgraph.sdk.TokenFeeScheduleUpdateTransaction 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
/*-
*
* 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.SchedulableTransactionBody;
import com.hedera.hashgraph.sdk.proto.TokenFeeScheduleUpdateTransactionBody;
import com.hedera.hashgraph.sdk.proto.TokenServiceGrpc;
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.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Objects;
/**
* Update the custom fees for a given token. If the token does not have a
* fee schedule, the network response returned will be
* CUSTOM_SCHEDULE_ALREADY_HAS_NO_FEES. You will need to sign the transaction
* with the fee schedule key to update the fee schedule for the token. If you
* do not have a fee schedule key set for the token, you will not be able to
* update the fee schedule.
*
* See Hedera Documentation
*/
public class TokenFeeScheduleUpdateTransaction extends Transaction {
@Nullable
private TokenId tokenId = null;
private List customFees = new ArrayList<>();
/**
* Constructor.
*/
public TokenFeeScheduleUpdateTransaction() {
}
/**
* Constructor.
*
* @param txs Compound list of transaction id's list of (AccountId, Transaction)
* records
* @throws InvalidProtocolBufferException when there is an issue with the protobuf
*/
TokenFeeScheduleUpdateTransaction(LinkedHashMap> txs) throws InvalidProtocolBufferException {
super(txs);
initFromTransactionBody();
}
/**
* Constructor.
*
* @param txBody protobuf TransactionBody
*/
TokenFeeScheduleUpdateTransaction(com.hedera.hashgraph.sdk.proto.TransactionBody txBody) {
super(txBody);
initFromTransactionBody();
}
/**
* Extract the token id.
*
* @return the token id
*/
@Nullable
public TokenId getTokenId() {
return tokenId;
}
/**
* Assign the token id.
*
* @param tokenId the token id
* @return {@code this}
*/
public TokenFeeScheduleUpdateTransaction setTokenId(TokenId tokenId) {
Objects.requireNonNull(tokenId);
requireNotFrozen();
this.tokenId = tokenId;
return this;
}
/**
* Extract the list of custom fees.
*
* @return the list of custom fees
*/
public List getCustomFees() {
return CustomFee.deepCloneList(customFees);
}
/**
* Assign the list of custom fees.
*
* @param customFees the list of custom fees
* @return {@code this}
*/
public TokenFeeScheduleUpdateTransaction setCustomFees(List customFees) {
Objects.requireNonNull(customFees);
requireNotFrozen();
this.customFees = CustomFee.deepCloneList(customFees);
return this;
}
/**
* Initialize from the transaction body.
*/
void initFromTransactionBody() {
var body = sourceTransactionBody.getTokenFeeScheduleUpdate();
if (body.hasTokenId()) {
tokenId = TokenId.fromProtobuf(body.getTokenId());
}
for (var fee : body.getCustomFeesList()) {
customFees.add(CustomFee.fromProtobuf(fee));
}
}
/**
* Build the transaction body.
*
* @return {@link
* com.hedera.hashgraph.sdk.proto.TokenFeeScheduleUpdateTransactionBody}
*/
TokenFeeScheduleUpdateTransactionBody.Builder build() {
var builder = TokenFeeScheduleUpdateTransactionBody.newBuilder();
if (tokenId != null) {
builder.setTokenId(tokenId.toProtobuf());
}
builder.clearCustomFees();
for (var fee : customFees) {
builder.addCustomFees(fee.toProtobuf());
}
return builder;
}
@Override
void validateChecksums(Client client) throws BadEntityIdException {
if (tokenId != null) {
tokenId.validateChecksum(client);
}
for (CustomFee fee : customFees) {
fee.validateChecksums(client);
}
}
@Override
MethodDescriptor getMethodDescriptor() {
return TokenServiceGrpc.getUpdateTokenFeeScheduleMethod();
}
@Override
void onFreeze(TransactionBody.Builder bodyBuilder) {
bodyBuilder.setTokenFeeScheduleUpdate(build());
}
@Override
void onScheduled(SchedulableTransactionBody.Builder scheduled) {
throw new UnsupportedOperationException("Cannot schedule TokenFeeScheduleUpdateTransaction");
}
}