com.hedera.hashgraph.sdk.proto.ScheduleDeleteTransactionBody Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: schedule_delete.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
/**
*
**
* Marks a schedule in the network's action queue as deleted. Must be signed by the admin key of the
* target schedule. A deleted schedule cannot receive any additional signing keys, nor will it be
* executed.
*
* Other notable response codes include, <tt>INVALID_SCHEDULE_ID</tt>, <tt>SCHEDULE_PENDING_EXPIRATION</tt>,
* <tt>SCHEDULE_ALREADY_DELETED</tt>, <tt>SCHEDULE_ALREADY_EXECUTED</tt>, <tt>SCHEDULE_IS_IMMUTABLE</tt>.
* For more information please see the section of this documentation on the <tt>ResponseCode</tt>
* enum.
*
*
* Protobuf type {@code proto.ScheduleDeleteTransactionBody}
*/
public final class ScheduleDeleteTransactionBody extends
com.google.protobuf.GeneratedMessageLite<
ScheduleDeleteTransactionBody, ScheduleDeleteTransactionBody.Builder> implements
// @@protoc_insertion_point(message_implements:proto.ScheduleDeleteTransactionBody)
ScheduleDeleteTransactionBodyOrBuilder {
private ScheduleDeleteTransactionBody() {
}
private int bitField0_;
public static final int SCHEDULEID_FIELD_NUMBER = 1;
private com.hedera.hashgraph.sdk.proto.ScheduleID scheduleID_;
/**
*
**
* The ID of the Scheduled Entity
*
*
* .proto.ScheduleID scheduleID = 1;
*/
@java.lang.Override
public boolean hasScheduleID() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
**
* The ID of the Scheduled Entity
*
*
* .proto.ScheduleID scheduleID = 1;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.ScheduleID getScheduleID() {
return scheduleID_ == null ? com.hedera.hashgraph.sdk.proto.ScheduleID.getDefaultInstance() : scheduleID_;
}
/**
*
**
* The ID of the Scheduled Entity
*
*
* .proto.ScheduleID scheduleID = 1;
*/
private void setScheduleID(com.hedera.hashgraph.sdk.proto.ScheduleID value) {
value.getClass();
scheduleID_ = value;
bitField0_ |= 0x00000001;
}
/**
*
**
* The ID of the Scheduled Entity
*
*
* .proto.ScheduleID scheduleID = 1;
*/
@java.lang.SuppressWarnings({"ReferenceEquality"})
private void mergeScheduleID(com.hedera.hashgraph.sdk.proto.ScheduleID value) {
value.getClass();
if (scheduleID_ != null &&
scheduleID_ != com.hedera.hashgraph.sdk.proto.ScheduleID.getDefaultInstance()) {
scheduleID_ =
com.hedera.hashgraph.sdk.proto.ScheduleID.newBuilder(scheduleID_).mergeFrom(value).buildPartial();
} else {
scheduleID_ = value;
}
bitField0_ |= 0x00000001;
}
/**
*
**
* The ID of the Scheduled Entity
*
*
* .proto.ScheduleID scheduleID = 1;
*/
private void clearScheduleID() { scheduleID_ = null;
bitField0_ = (bitField0_ & ~0x00000001);
}
public static com.hedera.hashgraph.sdk.proto.ScheduleDeleteTransactionBody parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data);
}
public static com.hedera.hashgraph.sdk.proto.ScheduleDeleteTransactionBody parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data, extensionRegistry);
}
public static com.hedera.hashgraph.sdk.proto.ScheduleDeleteTransactionBody parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data);
}
public static com.hedera.hashgraph.sdk.proto.ScheduleDeleteTransactionBody parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data, extensionRegistry);
}
public static com.hedera.hashgraph.sdk.proto.ScheduleDeleteTransactionBody parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data);
}
public static com.hedera.hashgraph.sdk.proto.ScheduleDeleteTransactionBody parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data, extensionRegistry);
}
public static com.hedera.hashgraph.sdk.proto.ScheduleDeleteTransactionBody parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, input);
}
public static com.hedera.hashgraph.sdk.proto.ScheduleDeleteTransactionBody parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, input, extensionRegistry);
}
public static com.hedera.hashgraph.sdk.proto.ScheduleDeleteTransactionBody parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return parseDelimitedFrom(DEFAULT_INSTANCE, input);
}
public static com.hedera.hashgraph.sdk.proto.ScheduleDeleteTransactionBody parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry);
}
public static com.hedera.hashgraph.sdk.proto.ScheduleDeleteTransactionBody parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, input);
}
public static com.hedera.hashgraph.sdk.proto.ScheduleDeleteTransactionBody parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, input, extensionRegistry);
}
public static Builder newBuilder() {
return (Builder) DEFAULT_INSTANCE.createBuilder();
}
public static Builder newBuilder(com.hedera.hashgraph.sdk.proto.ScheduleDeleteTransactionBody prototype) {
return DEFAULT_INSTANCE.createBuilder(prototype);
}
/**
*
**
* Marks a schedule in the network's action queue as deleted. Must be signed by the admin key of the
* target schedule. A deleted schedule cannot receive any additional signing keys, nor will it be
* executed.
*
* Other notable response codes include, <tt>INVALID_SCHEDULE_ID</tt>, <tt>SCHEDULE_PENDING_EXPIRATION</tt>,
* <tt>SCHEDULE_ALREADY_DELETED</tt>, <tt>SCHEDULE_ALREADY_EXECUTED</tt>, <tt>SCHEDULE_IS_IMMUTABLE</tt>.
* For more information please see the section of this documentation on the <tt>ResponseCode</tt>
* enum.
*
*
* Protobuf type {@code proto.ScheduleDeleteTransactionBody}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageLite.Builder<
com.hedera.hashgraph.sdk.proto.ScheduleDeleteTransactionBody, Builder> implements
// @@protoc_insertion_point(builder_implements:proto.ScheduleDeleteTransactionBody)
com.hedera.hashgraph.sdk.proto.ScheduleDeleteTransactionBodyOrBuilder {
// Construct using com.hedera.hashgraph.sdk.proto.ScheduleDeleteTransactionBody.newBuilder()
private Builder() {
super(DEFAULT_INSTANCE);
}
/**
*
**
* The ID of the Scheduled Entity
*
*
* .proto.ScheduleID scheduleID = 1;
*/
@java.lang.Override
public boolean hasScheduleID() {
return instance.hasScheduleID();
}
/**
*
**
* The ID of the Scheduled Entity
*
*
* .proto.ScheduleID scheduleID = 1;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.ScheduleID getScheduleID() {
return instance.getScheduleID();
}
/**
*
**
* The ID of the Scheduled Entity
*
*
* .proto.ScheduleID scheduleID = 1;
*/
public Builder setScheduleID(com.hedera.hashgraph.sdk.proto.ScheduleID value) {
copyOnWrite();
instance.setScheduleID(value);
return this;
}
/**
*
**
* The ID of the Scheduled Entity
*
*
* .proto.ScheduleID scheduleID = 1;
*/
public Builder setScheduleID(
com.hedera.hashgraph.sdk.proto.ScheduleID.Builder builderForValue) {
copyOnWrite();
instance.setScheduleID(builderForValue.build());
return this;
}
/**
*
**
* The ID of the Scheduled Entity
*
*
* .proto.ScheduleID scheduleID = 1;
*/
public Builder mergeScheduleID(com.hedera.hashgraph.sdk.proto.ScheduleID value) {
copyOnWrite();
instance.mergeScheduleID(value);
return this;
}
/**
*
**
* The ID of the Scheduled Entity
*
*
* .proto.ScheduleID scheduleID = 1;
*/
public Builder clearScheduleID() { copyOnWrite();
instance.clearScheduleID();
return this;
}
// @@protoc_insertion_point(builder_scope:proto.ScheduleDeleteTransactionBody)
}
@java.lang.Override
@java.lang.SuppressWarnings({"unchecked", "fallthrough"})
protected final java.lang.Object dynamicMethod(
com.google.protobuf.GeneratedMessageLite.MethodToInvoke method,
java.lang.Object arg0, java.lang.Object arg1) {
switch (method) {
case NEW_MUTABLE_INSTANCE: {
return new com.hedera.hashgraph.sdk.proto.ScheduleDeleteTransactionBody();
}
case NEW_BUILDER: {
return new Builder();
}
case BUILD_MESSAGE_INFO: {
java.lang.Object[] objects = new java.lang.Object[] {
"bitField0_",
"scheduleID_",
};
java.lang.String info =
"\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0000\u0000\u0000\u0001\u1009\u0000";
return newMessageInfo(DEFAULT_INSTANCE, info, objects);
}
// fall through
case GET_DEFAULT_INSTANCE: {
return DEFAULT_INSTANCE;
}
case GET_PARSER: {
com.google.protobuf.Parser parser = PARSER;
if (parser == null) {
synchronized (com.hedera.hashgraph.sdk.proto.ScheduleDeleteTransactionBody.class) {
parser = PARSER;
if (parser == null) {
parser =
new DefaultInstanceBasedParser(
DEFAULT_INSTANCE);
PARSER = parser;
}
}
}
return parser;
}
case GET_MEMOIZED_IS_INITIALIZED: {
return (byte) 1;
}
case SET_MEMOIZED_IS_INITIALIZED: {
return null;
}
}
throw new UnsupportedOperationException();
}
// @@protoc_insertion_point(class_scope:proto.ScheduleDeleteTransactionBody)
private static final com.hedera.hashgraph.sdk.proto.ScheduleDeleteTransactionBody DEFAULT_INSTANCE;
static {
ScheduleDeleteTransactionBody defaultInstance = new ScheduleDeleteTransactionBody();
// New instances are implicitly immutable so no need to make
// immutable.
DEFAULT_INSTANCE = defaultInstance;
com.google.protobuf.GeneratedMessageLite.registerDefaultInstance(
ScheduleDeleteTransactionBody.class, defaultInstance);
}
public static com.hedera.hashgraph.sdk.proto.ScheduleDeleteTransactionBody getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static volatile com.google.protobuf.Parser PARSER;
public static com.google.protobuf.Parser parser() {
return DEFAULT_INSTANCE.getParserForType();
}
}