com.hedera.hashgraph.sdk.proto.FileUpdateTransactionBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-jdk7 Show documentation
Show all versions of sdk-jdk7 Show documentation
Hedera™ Hashgraph SDK for Java
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: file_update.proto
package com.hedera.hashgraph.sdk.proto;
/**
*
**
* Modify the metadata and/or contents of a file. If a field is not set in the transaction body, the
* corresponding file attribute will be unchanged. This transaction must be signed by all the keys
* in the top level of a key list (M-of-M) of the file being updated. If the keys themselves are
* being updated, then the transaction must also be signed by all the new keys. If the keys contain
* additional KeyList or ThresholdKey then M-of-M secondary KeyList or ThresholdKey signing
* requirements must be meet If the update transaction sets the <tt>auto_renew_account_id</tt> field
* to anything other than the sentinel <tt>0.0.0</tt>, the key of the referenced account must sign.
*
*
* Protobuf type {@code proto.FileUpdateTransactionBody}
*/
public final class FileUpdateTransactionBody extends
com.google.protobuf.GeneratedMessageLite<
FileUpdateTransactionBody, FileUpdateTransactionBody.Builder> implements
// @@protoc_insertion_point(message_implements:proto.FileUpdateTransactionBody)
FileUpdateTransactionBodyOrBuilder {
private FileUpdateTransactionBody() {
contents_ = com.google.protobuf.ByteString.EMPTY;
}
public static final int FILEID_FIELD_NUMBER = 1;
private com.hedera.hashgraph.sdk.proto.FileID fileID_;
/**
*
**
* The ID of the file to update
*
*
* .proto.FileID fileID = 1;
*/
@java.lang.Override
public boolean hasFileID() {
return fileID_ != null;
}
/**
*
**
* The ID of the file to update
*
*
* .proto.FileID fileID = 1;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.FileID getFileID() {
return fileID_ == null ? com.hedera.hashgraph.sdk.proto.FileID.getDefaultInstance() : fileID_;
}
/**
*
**
* The ID of the file to update
*
*
* .proto.FileID fileID = 1;
*/
private void setFileID(com.hedera.hashgraph.sdk.proto.FileID value) {
value.getClass();
fileID_ = value;
}
/**
*
**
* The ID of the file to update
*
*
* .proto.FileID fileID = 1;
*/
@java.lang.SuppressWarnings({"ReferenceEquality"})
private void mergeFileID(com.hedera.hashgraph.sdk.proto.FileID value) {
value.getClass();
if (fileID_ != null &&
fileID_ != com.hedera.hashgraph.sdk.proto.FileID.getDefaultInstance()) {
fileID_ =
com.hedera.hashgraph.sdk.proto.FileID.newBuilder(fileID_).mergeFrom(value).buildPartial();
} else {
fileID_ = value;
}
}
/**
*
**
* The ID of the file to update
*
*
* .proto.FileID fileID = 1;
*/
private void clearFileID() { fileID_ = null;
}
public static final int EXPIRATIONTIME_FIELD_NUMBER = 2;
private com.hedera.hashgraph.sdk.proto.Timestamp expirationTime_;
/**
*
**
* The new expiry time (ignored if not later than the current expiry)
*
*
* .proto.Timestamp expirationTime = 2;
*/
@java.lang.Override
public boolean hasExpirationTime() {
return expirationTime_ != null;
}
/**
*
**
* The new expiry time (ignored if not later than the current expiry)
*
*
* .proto.Timestamp expirationTime = 2;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.Timestamp getExpirationTime() {
return expirationTime_ == null ? com.hedera.hashgraph.sdk.proto.Timestamp.getDefaultInstance() : expirationTime_;
}
/**
*
**
* The new expiry time (ignored if not later than the current expiry)
*
*
* .proto.Timestamp expirationTime = 2;
*/
private void setExpirationTime(com.hedera.hashgraph.sdk.proto.Timestamp value) {
value.getClass();
expirationTime_ = value;
}
/**
*
**
* The new expiry time (ignored if not later than the current expiry)
*
*
* .proto.Timestamp expirationTime = 2;
*/
@java.lang.SuppressWarnings({"ReferenceEquality"})
private void mergeExpirationTime(com.hedera.hashgraph.sdk.proto.Timestamp value) {
value.getClass();
if (expirationTime_ != null &&
expirationTime_ != com.hedera.hashgraph.sdk.proto.Timestamp.getDefaultInstance()) {
expirationTime_ =
com.hedera.hashgraph.sdk.proto.Timestamp.newBuilder(expirationTime_).mergeFrom(value).buildPartial();
} else {
expirationTime_ = value;
}
}
/**
*
**
* The new expiry time (ignored if not later than the current expiry)
*
*
* .proto.Timestamp expirationTime = 2;
*/
private void clearExpirationTime() { expirationTime_ = null;
}
public static final int KEYS_FIELD_NUMBER = 3;
private com.hedera.hashgraph.sdk.proto.KeyList keys_;
/**
*
**
* The new list of keys that can modify or delete the file
*
*
* .proto.KeyList keys = 3;
*/
@java.lang.Override
public boolean hasKeys() {
return keys_ != null;
}
/**
*
**
* The new list of keys that can modify or delete the file
*
*
* .proto.KeyList keys = 3;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.KeyList getKeys() {
return keys_ == null ? com.hedera.hashgraph.sdk.proto.KeyList.getDefaultInstance() : keys_;
}
/**
*
**
* The new list of keys that can modify or delete the file
*
*
* .proto.KeyList keys = 3;
*/
private void setKeys(com.hedera.hashgraph.sdk.proto.KeyList value) {
value.getClass();
keys_ = value;
}
/**
*
**
* The new list of keys that can modify or delete the file
*
*
* .proto.KeyList keys = 3;
*/
@java.lang.SuppressWarnings({"ReferenceEquality"})
private void mergeKeys(com.hedera.hashgraph.sdk.proto.KeyList value) {
value.getClass();
if (keys_ != null &&
keys_ != com.hedera.hashgraph.sdk.proto.KeyList.getDefaultInstance()) {
keys_ =
com.hedera.hashgraph.sdk.proto.KeyList.newBuilder(keys_).mergeFrom(value).buildPartial();
} else {
keys_ = value;
}
}
/**
*
**
* The new list of keys that can modify or delete the file
*
*
* .proto.KeyList keys = 3;
*/
private void clearKeys() { keys_ = null;
}
public static final int CONTENTS_FIELD_NUMBER = 4;
private com.google.protobuf.ByteString contents_;
/**
*
**
* The new contents that should overwrite the file's current contents
*
*
* bytes contents = 4;
* @return The contents.
*/
@java.lang.Override
public com.google.protobuf.ByteString getContents() {
return contents_;
}
/**
*
**
* The new contents that should overwrite the file's current contents
*
*
* bytes contents = 4;
* @param value The contents to set.
*/
private void setContents(com.google.protobuf.ByteString value) {
java.lang.Class> valueClass = value.getClass();
contents_ = value;
}
/**
*
**
* The new contents that should overwrite the file's current contents
*
*
* bytes contents = 4;
*/
private void clearContents() {
contents_ = getDefaultInstance().getContents();
}
public static final int MEMO_FIELD_NUMBER = 5;
private com.google.protobuf.StringValue memo_;
/**
*
**
* If set, the new memo to be associated with the file (UTF-8 encoding max 100 bytes)
*
*
* .google.protobuf.StringValue memo = 5;
*/
@java.lang.Override
public boolean hasMemo() {
return memo_ != null;
}
/**
*
**
* If set, the new memo to be associated with the file (UTF-8 encoding max 100 bytes)
*
*
* .google.protobuf.StringValue memo = 5;
*/
@java.lang.Override
public com.google.protobuf.StringValue getMemo() {
return memo_ == null ? com.google.protobuf.StringValue.getDefaultInstance() : memo_;
}
/**
*
**
* If set, the new memo to be associated with the file (UTF-8 encoding max 100 bytes)
*
*
* .google.protobuf.StringValue memo = 5;
*/
private void setMemo(com.google.protobuf.StringValue value) {
value.getClass();
memo_ = value;
}
/**
*
**
* If set, the new memo to be associated with the file (UTF-8 encoding max 100 bytes)
*
*
* .google.protobuf.StringValue memo = 5;
*/
@java.lang.SuppressWarnings({"ReferenceEquality"})
private void mergeMemo(com.google.protobuf.StringValue value) {
value.getClass();
if (memo_ != null &&
memo_ != com.google.protobuf.StringValue.getDefaultInstance()) {
memo_ =
com.google.protobuf.StringValue.newBuilder(memo_).mergeFrom(value).buildPartial();
} else {
memo_ = value;
}
}
/**
*
**
* If set, the new memo to be associated with the file (UTF-8 encoding max 100 bytes)
*
*
* .google.protobuf.StringValue memo = 5;
*/
private void clearMemo() { memo_ = null;
}
public static com.hedera.hashgraph.sdk.proto.FileUpdateTransactionBody 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.FileUpdateTransactionBody 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.FileUpdateTransactionBody 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.FileUpdateTransactionBody 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.FileUpdateTransactionBody parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data);
}
public static com.hedera.hashgraph.sdk.proto.FileUpdateTransactionBody 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.FileUpdateTransactionBody 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.FileUpdateTransactionBody 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.FileUpdateTransactionBody parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return parseDelimitedFrom(DEFAULT_INSTANCE, input);
}
public static com.hedera.hashgraph.sdk.proto.FileUpdateTransactionBody 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.FileUpdateTransactionBody 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.FileUpdateTransactionBody 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.FileUpdateTransactionBody prototype) {
return (Builder) DEFAULT_INSTANCE.createBuilder(prototype);
}
/**
*
**
* Modify the metadata and/or contents of a file. If a field is not set in the transaction body, the
* corresponding file attribute will be unchanged. This transaction must be signed by all the keys
* in the top level of a key list (M-of-M) of the file being updated. If the keys themselves are
* being updated, then the transaction must also be signed by all the new keys. If the keys contain
* additional KeyList or ThresholdKey then M-of-M secondary KeyList or ThresholdKey signing
* requirements must be meet If the update transaction sets the <tt>auto_renew_account_id</tt> field
* to anything other than the sentinel <tt>0.0.0</tt>, the key of the referenced account must sign.
*
*
* Protobuf type {@code proto.FileUpdateTransactionBody}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageLite.Builder<
com.hedera.hashgraph.sdk.proto.FileUpdateTransactionBody, Builder> implements
// @@protoc_insertion_point(builder_implements:proto.FileUpdateTransactionBody)
com.hedera.hashgraph.sdk.proto.FileUpdateTransactionBodyOrBuilder {
// Construct using com.hedera.hashgraph.sdk.proto.FileUpdateTransactionBody.newBuilder()
private Builder() {
super(DEFAULT_INSTANCE);
}
/**
*
**
* The ID of the file to update
*
*
* .proto.FileID fileID = 1;
*/
@java.lang.Override
public boolean hasFileID() {
return instance.hasFileID();
}
/**
*
**
* The ID of the file to update
*
*
* .proto.FileID fileID = 1;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.FileID getFileID() {
return instance.getFileID();
}
/**
*
**
* The ID of the file to update
*
*
* .proto.FileID fileID = 1;
*/
public Builder setFileID(com.hedera.hashgraph.sdk.proto.FileID value) {
copyOnWrite();
instance.setFileID(value);
return this;
}
/**
*
**
* The ID of the file to update
*
*
* .proto.FileID fileID = 1;
*/
public Builder setFileID(
com.hedera.hashgraph.sdk.proto.FileID.Builder builderForValue) {
copyOnWrite();
instance.setFileID(builderForValue.build());
return this;
}
/**
*
**
* The ID of the file to update
*
*
* .proto.FileID fileID = 1;
*/
public Builder mergeFileID(com.hedera.hashgraph.sdk.proto.FileID value) {
copyOnWrite();
instance.mergeFileID(value);
return this;
}
/**
*
**
* The ID of the file to update
*
*
* .proto.FileID fileID = 1;
*/
public Builder clearFileID() { copyOnWrite();
instance.clearFileID();
return this;
}
/**
*
**
* The new expiry time (ignored if not later than the current expiry)
*
*
* .proto.Timestamp expirationTime = 2;
*/
@java.lang.Override
public boolean hasExpirationTime() {
return instance.hasExpirationTime();
}
/**
*
**
* The new expiry time (ignored if not later than the current expiry)
*
*
* .proto.Timestamp expirationTime = 2;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.Timestamp getExpirationTime() {
return instance.getExpirationTime();
}
/**
*
**
* The new expiry time (ignored if not later than the current expiry)
*
*
* .proto.Timestamp expirationTime = 2;
*/
public Builder setExpirationTime(com.hedera.hashgraph.sdk.proto.Timestamp value) {
copyOnWrite();
instance.setExpirationTime(value);
return this;
}
/**
*
**
* The new expiry time (ignored if not later than the current expiry)
*
*
* .proto.Timestamp expirationTime = 2;
*/
public Builder setExpirationTime(
com.hedera.hashgraph.sdk.proto.Timestamp.Builder builderForValue) {
copyOnWrite();
instance.setExpirationTime(builderForValue.build());
return this;
}
/**
*
**
* The new expiry time (ignored if not later than the current expiry)
*
*
* .proto.Timestamp expirationTime = 2;
*/
public Builder mergeExpirationTime(com.hedera.hashgraph.sdk.proto.Timestamp value) {
copyOnWrite();
instance.mergeExpirationTime(value);
return this;
}
/**
*
**
* The new expiry time (ignored if not later than the current expiry)
*
*
* .proto.Timestamp expirationTime = 2;
*/
public Builder clearExpirationTime() { copyOnWrite();
instance.clearExpirationTime();
return this;
}
/**
*
**
* The new list of keys that can modify or delete the file
*
*
* .proto.KeyList keys = 3;
*/
@java.lang.Override
public boolean hasKeys() {
return instance.hasKeys();
}
/**
*
**
* The new list of keys that can modify or delete the file
*
*
* .proto.KeyList keys = 3;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.KeyList getKeys() {
return instance.getKeys();
}
/**
*
**
* The new list of keys that can modify or delete the file
*
*
* .proto.KeyList keys = 3;
*/
public Builder setKeys(com.hedera.hashgraph.sdk.proto.KeyList value) {
copyOnWrite();
instance.setKeys(value);
return this;
}
/**
*
**
* The new list of keys that can modify or delete the file
*
*
* .proto.KeyList keys = 3;
*/
public Builder setKeys(
com.hedera.hashgraph.sdk.proto.KeyList.Builder builderForValue) {
copyOnWrite();
instance.setKeys(builderForValue.build());
return this;
}
/**
*
**
* The new list of keys that can modify or delete the file
*
*
* .proto.KeyList keys = 3;
*/
public Builder mergeKeys(com.hedera.hashgraph.sdk.proto.KeyList value) {
copyOnWrite();
instance.mergeKeys(value);
return this;
}
/**
*
**
* The new list of keys that can modify or delete the file
*
*
* .proto.KeyList keys = 3;
*/
public Builder clearKeys() { copyOnWrite();
instance.clearKeys();
return this;
}
/**
*
**
* The new contents that should overwrite the file's current contents
*
*
* bytes contents = 4;
* @return The contents.
*/
@java.lang.Override
public com.google.protobuf.ByteString getContents() {
return instance.getContents();
}
/**
*
**
* The new contents that should overwrite the file's current contents
*
*
* bytes contents = 4;
* @param value The contents to set.
* @return This builder for chaining.
*/
public Builder setContents(com.google.protobuf.ByteString value) {
copyOnWrite();
instance.setContents(value);
return this;
}
/**
*
**
* The new contents that should overwrite the file's current contents
*
*
* bytes contents = 4;
* @return This builder for chaining.
*/
public Builder clearContents() {
copyOnWrite();
instance.clearContents();
return this;
}
/**
*
**
* If set, the new memo to be associated with the file (UTF-8 encoding max 100 bytes)
*
*
* .google.protobuf.StringValue memo = 5;
*/
@java.lang.Override
public boolean hasMemo() {
return instance.hasMemo();
}
/**
*
**
* If set, the new memo to be associated with the file (UTF-8 encoding max 100 bytes)
*
*
* .google.protobuf.StringValue memo = 5;
*/
@java.lang.Override
public com.google.protobuf.StringValue getMemo() {
return instance.getMemo();
}
/**
*
**
* If set, the new memo to be associated with the file (UTF-8 encoding max 100 bytes)
*
*
* .google.protobuf.StringValue memo = 5;
*/
public Builder setMemo(com.google.protobuf.StringValue value) {
copyOnWrite();
instance.setMemo(value);
return this;
}
/**
*
**
* If set, the new memo to be associated with the file (UTF-8 encoding max 100 bytes)
*
*
* .google.protobuf.StringValue memo = 5;
*/
public Builder setMemo(
com.google.protobuf.StringValue.Builder builderForValue) {
copyOnWrite();
instance.setMemo(builderForValue.build());
return this;
}
/**
*
**
* If set, the new memo to be associated with the file (UTF-8 encoding max 100 bytes)
*
*
* .google.protobuf.StringValue memo = 5;
*/
public Builder mergeMemo(com.google.protobuf.StringValue value) {
copyOnWrite();
instance.mergeMemo(value);
return this;
}
/**
*
**
* If set, the new memo to be associated with the file (UTF-8 encoding max 100 bytes)
*
*
* .google.protobuf.StringValue memo = 5;
*/
public Builder clearMemo() { copyOnWrite();
instance.clearMemo();
return this;
}
// @@protoc_insertion_point(builder_scope:proto.FileUpdateTransactionBody)
}
@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.FileUpdateTransactionBody();
}
case NEW_BUILDER: {
return new Builder();
}
case BUILD_MESSAGE_INFO: {
java.lang.Object[] objects = new java.lang.Object[] {
"fileID_",
"expirationTime_",
"keys_",
"contents_",
"memo_",
};
java.lang.String info =
"\u0000\u0005\u0000\u0000\u0001\u0005\u0005\u0000\u0000\u0000\u0001\t\u0002\t\u0003" +
"\t\u0004\n\u0005\t";
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.FileUpdateTransactionBody.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.FileUpdateTransactionBody)
private static final com.hedera.hashgraph.sdk.proto.FileUpdateTransactionBody DEFAULT_INSTANCE;
static {
FileUpdateTransactionBody defaultInstance = new FileUpdateTransactionBody();
// New instances are implicitly immutable so no need to make
// immutable.
DEFAULT_INSTANCE = defaultInstance;
com.google.protobuf.GeneratedMessageLite.registerDefaultInstance(
FileUpdateTransactionBody.class, defaultInstance);
}
public static com.hedera.hashgraph.sdk.proto.FileUpdateTransactionBody getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static volatile com.google.protobuf.Parser PARSER;
public static com.google.protobuf.Parser parser() {
return DEFAULT_INSTANCE.getParserForType();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy