com.hedera.hashgraph.sdk.TokenAssociation 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!
/*-
*
* 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.common.base.MoreObjects;
import com.google.protobuf.InvalidProtocolBufferException;
/**
* Associates the provided Hedera account with the provided Hedera token(s).
* Hedera accounts must be associated with a fungible or non-fungible token
* first before you can transfer tokens to that account. In the case of
* NON_FUNGIBLE Type, once an account is associated, it can hold any number
* of NFTs (serial numbers) of that token type. The Hedera account that is
* being associated with a token is required to sign the transaction.
*
* See Hedera Documentation
*/
public class TokenAssociation {
/**
* The token involved in the association
*/
public final TokenId tokenId;
/**
* The account involved in the association
*/
public final AccountId accountId;
/**
* Constructor.
*
* @param tokenId the token id
* @param accountId the account id
*/
TokenAssociation(TokenId tokenId, AccountId accountId) {
this.tokenId = tokenId;
this.accountId = accountId;
}
/**
* Create a token association from a protobuf.
*
* @param tokenAssociation the protobuf
* @return the new token association
*/
static TokenAssociation fromProtobuf(com.hedera.hashgraph.sdk.proto.TokenAssociation tokenAssociation) {
return new TokenAssociation(
tokenAssociation.hasTokenId() ? TokenId.fromProtobuf(tokenAssociation.getTokenId()) : new TokenId(0, 0, 0),
tokenAssociation.hasAccountId() ? AccountId.fromProtobuf(tokenAssociation.getAccountId()) : new AccountId(0, 0, 0)
);
}
/**
* Create a token association from a byte array.
*
* @param bytes the byte array
* @return the new token association
* @throws InvalidProtocolBufferException when there is an issue with the protobuf
*/
public static TokenAssociation fromBytes(byte[] bytes) throws InvalidProtocolBufferException {
return fromProtobuf(com.hedera.hashgraph.sdk.proto.TokenAssociation.parseFrom(bytes));
}
/**
* Create the protobuf.
*
* @return the protobuf representation
*/
com.hedera.hashgraph.sdk.proto.TokenAssociation toProtobuf() {
return com.hedera.hashgraph.sdk.proto.TokenAssociation.newBuilder()
.setTokenId(tokenId.toProtobuf())
.setAccountId(accountId.toProtobuf())
.build();
}
@Override
public String toString() {
return MoreObjects.toStringHelper(this)
.add("tokenId", tokenId)
.add("accountId", accountId)
.toString();
}
/**
* Create the byte array.
*
* @return the byte array representation
*/
public byte[] toBytes() {
return toProtobuf().toByteArray();
}
}