com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody 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
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: token_revoke_kyc.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
/**
*
**
* Revokes KYC to the account for the given token. Must be signed by the Token's kycKey.
* 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 KYC Key is defined, the transaction will resolve to TOKEN_HAS_NO_KYC_KEY.
* Once executed the Account is marked as KYC Revoked
*
*
* Protobuf type {@code proto.TokenRevokeKycTransactionBody}
*/
public final class TokenRevokeKycTransactionBody extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:proto.TokenRevokeKycTransactionBody)
TokenRevokeKycTransactionBodyOrBuilder {
private static final long serialVersionUID = 0L;
// Use TokenRevokeKycTransactionBody.newBuilder() to construct.
private TokenRevokeKycTransactionBody(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private TokenRevokeKycTransactionBody() {
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new TokenRevokeKycTransactionBody();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hedera.hashgraph.sdk.proto.TokenRevokeKyc.internal_static_proto_TokenRevokeKycTransactionBody_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hedera.hashgraph.sdk.proto.TokenRevokeKyc.internal_static_proto_TokenRevokeKycTransactionBody_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody.class, com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody.Builder.class);
}
private int bitField0_;
public static final int TOKEN_FIELD_NUMBER = 1;
private com.hedera.hashgraph.sdk.proto.TokenID token_;
/**
*
**
* The token for which this account will get his KYC revoked. 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 ((bitField0_ & 0x00000001) != 0);
}
/**
*
**
* The token for which this account will get his KYC revoked. If token does not exist,
* transaction results in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
* @return The token.
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.TokenID getToken() {
return token_ == null ? com.hedera.hashgraph.sdk.proto.TokenID.getDefaultInstance() : token_;
}
/**
*
**
* The token for which this account will get his KYC revoked. If token does not exist,
* transaction results in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.TokenIDOrBuilder getTokenOrBuilder() {
return token_ == null ? com.hedera.hashgraph.sdk.proto.TokenID.getDefaultInstance() : token_;
}
public static final int ACCOUNT_FIELD_NUMBER = 2;
private com.hedera.hashgraph.sdk.proto.AccountID account_;
/**
*
**
* The account to be KYC Revoked
*
*
* .proto.AccountID account = 2;
* @return Whether the account field is set.
*/
@java.lang.Override
public boolean hasAccount() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
**
* The account to be KYC Revoked
*
*
* .proto.AccountID account = 2;
* @return The account.
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.AccountID getAccount() {
return account_ == null ? com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance() : account_;
}
/**
*
**
* The account to be KYC Revoked
*
*
* .proto.AccountID account = 2;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder getAccountOrBuilder() {
return account_ == null ? com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance() : account_;
}
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, getToken());
}
if (((bitField0_ & 0x00000002) != 0)) {
output.writeMessage(2, getAccount());
}
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, getToken());
}
if (((bitField0_ & 0x00000002) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getAccount());
}
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.TokenRevokeKycTransactionBody)) {
return super.equals(obj);
}
com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody other = (com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody) 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 (!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 (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) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody 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.TokenRevokeKycTransactionBody parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody 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.TokenRevokeKycTransactionBody parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody 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.TokenRevokeKycTransactionBody parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody 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.TokenRevokeKycTransactionBody parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody 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.TokenRevokeKycTransactionBody 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.TokenRevokeKycTransactionBody 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.TokenRevokeKycTransactionBody 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;
}
/**
*
**
* Revokes KYC to the account for the given token. Must be signed by the Token's kycKey.
* 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 KYC Key is defined, the transaction will resolve to TOKEN_HAS_NO_KYC_KEY.
* Once executed the Account is marked as KYC Revoked
*
*
* Protobuf type {@code proto.TokenRevokeKycTransactionBody}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:proto.TokenRevokeKycTransactionBody)
com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBodyOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hedera.hashgraph.sdk.proto.TokenRevokeKyc.internal_static_proto_TokenRevokeKycTransactionBody_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hedera.hashgraph.sdk.proto.TokenRevokeKyc.internal_static_proto_TokenRevokeKycTransactionBody_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody.class, com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody.Builder.class);
}
// Construct using com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getTokenFieldBuilder();
getAccountFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
token_ = null;
if (tokenBuilder_ != null) {
tokenBuilder_.dispose();
tokenBuilder_ = null;
}
account_ = null;
if (accountBuilder_ != null) {
accountBuilder_.dispose();
accountBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.hedera.hashgraph.sdk.proto.TokenRevokeKyc.internal_static_proto_TokenRevokeKycTransactionBody_descriptor;
}
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody getDefaultInstanceForType() {
return com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody.getDefaultInstance();
}
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody build() {
com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody buildPartial() {
com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody result = new com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.token_ = tokenBuilder_ == null
? token_
: tokenBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.account_ = accountBuilder_ == null
? account_
: accountBuilder_.build();
to_bitField0_ |= 0x00000002;
}
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.TokenRevokeKycTransactionBody) {
return mergeFrom((com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody other) {
if (other == com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody.getDefaultInstance()) return this;
if (other.hasToken()) {
mergeToken(other.getToken());
}
if (other.hasAccount()) {
mergeAccount(other.getAccount());
}
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(
getTokenFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
input.readMessage(
getAccountFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000002;
break;
} // case 18
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.TokenID token_;
private com.google.protobuf.SingleFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.TokenID, com.hedera.hashgraph.sdk.proto.TokenID.Builder, com.hedera.hashgraph.sdk.proto.TokenIDOrBuilder> tokenBuilder_;
/**
*
**
* The token for which this account will get his KYC revoked. 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 ((bitField0_ & 0x00000001) != 0);
}
/**
*
**
* The token for which this account will get his KYC revoked. If token does not exist,
* transaction results in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
* @return The token.
*/
public com.hedera.hashgraph.sdk.proto.TokenID getToken() {
if (tokenBuilder_ == null) {
return token_ == null ? com.hedera.hashgraph.sdk.proto.TokenID.getDefaultInstance() : token_;
} else {
return tokenBuilder_.getMessage();
}
}
/**
*
**
* The token for which this account will get his KYC revoked. If token does not exist,
* transaction results in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
*/
public Builder setToken(com.hedera.hashgraph.sdk.proto.TokenID value) {
if (tokenBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
token_ = value;
} else {
tokenBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
**
* The token for which this account will get his KYC revoked. If token does not exist,
* transaction results in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
*/
public Builder setToken(
com.hedera.hashgraph.sdk.proto.TokenID.Builder builderForValue) {
if (tokenBuilder_ == null) {
token_ = builderForValue.build();
} else {
tokenBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
**
* The token for which this account will get his KYC revoked. If token does not exist,
* transaction results in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
*/
public Builder mergeToken(com.hedera.hashgraph.sdk.proto.TokenID value) {
if (tokenBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0) &&
token_ != null &&
token_ != com.hedera.hashgraph.sdk.proto.TokenID.getDefaultInstance()) {
getTokenBuilder().mergeFrom(value);
} else {
token_ = value;
}
} else {
tokenBuilder_.mergeFrom(value);
}
if (token_ != null) {
bitField0_ |= 0x00000001;
onChanged();
}
return this;
}
/**
*
**
* The token for which this account will get his KYC revoked. If token does not exist,
* transaction results in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
*/
public Builder clearToken() {
bitField0_ = (bitField0_ & ~0x00000001);
token_ = null;
if (tokenBuilder_ != null) {
tokenBuilder_.dispose();
tokenBuilder_ = null;
}
onChanged();
return this;
}
/**
*
**
* The token for which this account will get his KYC revoked. If token does not exist,
* transaction results in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
*/
public com.hedera.hashgraph.sdk.proto.TokenID.Builder getTokenBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getTokenFieldBuilder().getBuilder();
}
/**
*
**
* The token for which this account will get his KYC revoked. If token does not exist,
* transaction results in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
*/
public com.hedera.hashgraph.sdk.proto.TokenIDOrBuilder getTokenOrBuilder() {
if (tokenBuilder_ != null) {
return tokenBuilder_.getMessageOrBuilder();
} else {
return token_ == null ?
com.hedera.hashgraph.sdk.proto.TokenID.getDefaultInstance() : token_;
}
}
/**
*
**
* The token for which this account will get his KYC revoked. If token does not exist,
* transaction results in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.TokenID, com.hedera.hashgraph.sdk.proto.TokenID.Builder, com.hedera.hashgraph.sdk.proto.TokenIDOrBuilder>
getTokenFieldBuilder() {
if (tokenBuilder_ == null) {
tokenBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.TokenID, com.hedera.hashgraph.sdk.proto.TokenID.Builder, com.hedera.hashgraph.sdk.proto.TokenIDOrBuilder>(
getToken(),
getParentForChildren(),
isClean());
token_ = null;
}
return tokenBuilder_;
}
private com.hedera.hashgraph.sdk.proto.AccountID account_;
private com.google.protobuf.SingleFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.AccountID, com.hedera.hashgraph.sdk.proto.AccountID.Builder, com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder> accountBuilder_;
/**
*
**
* The account to be KYC Revoked
*
*
* .proto.AccountID account = 2;
* @return Whether the account field is set.
*/
public boolean hasAccount() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
**
* The account to be KYC Revoked
*
*
* .proto.AccountID account = 2;
* @return The account.
*/
public com.hedera.hashgraph.sdk.proto.AccountID getAccount() {
if (accountBuilder_ == null) {
return account_ == null ? com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance() : account_;
} else {
return accountBuilder_.getMessage();
}
}
/**
*
**
* The account to be KYC Revoked
*
*
* .proto.AccountID account = 2;
*/
public Builder setAccount(com.hedera.hashgraph.sdk.proto.AccountID value) {
if (accountBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
account_ = value;
} else {
accountBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
**
* The account to be KYC Revoked
*
*
* .proto.AccountID account = 2;
*/
public Builder setAccount(
com.hedera.hashgraph.sdk.proto.AccountID.Builder builderForValue) {
if (accountBuilder_ == null) {
account_ = builderForValue.build();
} else {
accountBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
**
* The account to be KYC Revoked
*
*
* .proto.AccountID account = 2;
*/
public Builder mergeAccount(com.hedera.hashgraph.sdk.proto.AccountID value) {
if (accountBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0) &&
account_ != null &&
account_ != com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance()) {
getAccountBuilder().mergeFrom(value);
} else {
account_ = value;
}
} else {
accountBuilder_.mergeFrom(value);
}
if (account_ != null) {
bitField0_ |= 0x00000002;
onChanged();
}
return this;
}
/**
*
**
* The account to be KYC Revoked
*
*
* .proto.AccountID account = 2;
*/
public Builder clearAccount() {
bitField0_ = (bitField0_ & ~0x00000002);
account_ = null;
if (accountBuilder_ != null) {
accountBuilder_.dispose();
accountBuilder_ = null;
}
onChanged();
return this;
}
/**
*
**
* The account to be KYC Revoked
*
*
* .proto.AccountID account = 2;
*/
public com.hedera.hashgraph.sdk.proto.AccountID.Builder getAccountBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getAccountFieldBuilder().getBuilder();
}
/**
*
**
* The account to be KYC Revoked
*
*
* .proto.AccountID account = 2;
*/
public com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder getAccountOrBuilder() {
if (accountBuilder_ != null) {
return accountBuilder_.getMessageOrBuilder();
} else {
return account_ == null ?
com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance() : account_;
}
}
/**
*
**
* The account to be KYC Revoked
*
*
* .proto.AccountID account = 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>
getAccountFieldBuilder() {
if (accountBuilder_ == null) {
accountBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.AccountID, com.hedera.hashgraph.sdk.proto.AccountID.Builder, com.hedera.hashgraph.sdk.proto.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.TokenRevokeKycTransactionBody)
}
// @@protoc_insertion_point(class_scope:proto.TokenRevokeKycTransactionBody)
private static final com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody();
}
public static com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBody getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public TokenRevokeKycTransactionBody 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.TokenRevokeKycTransactionBody getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}