All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody Maven / Gradle / Ivy

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: crypto_add_live_hash.proto

// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;

/**
 * 
 **
 * At consensus, attaches the given livehash to the given account.  The hash can be deleted by the
 * key controlling the account, or by any of the keys associated to the livehash.  Hence livehashes
 * provide a revocation service for their implied credentials; for example, when an authority grants
 * a credential to the account, the account owner will cosign with the authority (or authorities) to
 * attach a hash of the credential to the account---hence proving the grant. If the credential is
 * revoked, then any of the authorities may delete it (or the account owner). In this way, the
 * livehash mechanism acts as a revocation service.  An account cannot have two identical livehashes
 * associated. To modify the list of keys in a livehash, the livehash should first be deleted, then
 * recreated with a new list of keys.
 * 
* * Protobuf type {@code proto.CryptoAddLiveHashTransactionBody} */ public final class CryptoAddLiveHashTransactionBody extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:proto.CryptoAddLiveHashTransactionBody) CryptoAddLiveHashTransactionBodyOrBuilder { private static final long serialVersionUID = 0L; // Use CryptoAddLiveHashTransactionBody.newBuilder() to construct. private CryptoAddLiveHashTransactionBody(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private CryptoAddLiveHashTransactionBody() { } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new CryptoAddLiveHashTransactionBody(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.hedera.hashgraph.sdk.proto.CryptoAddLiveHash.internal_static_proto_CryptoAddLiveHashTransactionBody_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.hedera.hashgraph.sdk.proto.CryptoAddLiveHash.internal_static_proto_CryptoAddLiveHashTransactionBody_fieldAccessorTable .ensureFieldAccessorsInitialized( com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody.class, com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody.Builder.class); } private int bitField0_; public static final int LIVEHASH_FIELD_NUMBER = 3; private com.hedera.hashgraph.sdk.proto.LiveHash liveHash_; /** *
   **
   * A hash of some credential or certificate, along with the keys of the entities that asserted it validity
   * 
* * .proto.LiveHash liveHash = 3; * @return Whether the liveHash field is set. */ @java.lang.Override public boolean hasLiveHash() { return ((bitField0_ & 0x00000001) != 0); } /** *
   **
   * A hash of some credential or certificate, along with the keys of the entities that asserted it validity
   * 
* * .proto.LiveHash liveHash = 3; * @return The liveHash. */ @java.lang.Override public com.hedera.hashgraph.sdk.proto.LiveHash getLiveHash() { return liveHash_ == null ? com.hedera.hashgraph.sdk.proto.LiveHash.getDefaultInstance() : liveHash_; } /** *
   **
   * A hash of some credential or certificate, along with the keys of the entities that asserted it validity
   * 
* * .proto.LiveHash liveHash = 3; */ @java.lang.Override public com.hedera.hashgraph.sdk.proto.LiveHashOrBuilder getLiveHashOrBuilder() { return liveHash_ == null ? com.hedera.hashgraph.sdk.proto.LiveHash.getDefaultInstance() : liveHash_; } 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(3, getLiveHash()); } 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(3, getLiveHash()); } 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.CryptoAddLiveHashTransactionBody)) { return super.equals(obj); } com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody other = (com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody) obj; if (hasLiveHash() != other.hasLiveHash()) return false; if (hasLiveHash()) { if (!getLiveHash() .equals(other.getLiveHash())) 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 (hasLiveHash()) { hash = (37 * hash) + LIVEHASH_FIELD_NUMBER; hash = (53 * hash) + getLiveHash().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody 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.CryptoAddLiveHashTransactionBody parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody 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.CryptoAddLiveHashTransactionBody parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody 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.CryptoAddLiveHashTransactionBody parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody 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.CryptoAddLiveHashTransactionBody parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody 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.CryptoAddLiveHashTransactionBody 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.CryptoAddLiveHashTransactionBody 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.CryptoAddLiveHashTransactionBody 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; } /** *
   **
   * At consensus, attaches the given livehash to the given account.  The hash can be deleted by the
   * key controlling the account, or by any of the keys associated to the livehash.  Hence livehashes
   * provide a revocation service for their implied credentials; for example, when an authority grants
   * a credential to the account, the account owner will cosign with the authority (or authorities) to
   * attach a hash of the credential to the account---hence proving the grant. If the credential is
   * revoked, then any of the authorities may delete it (or the account owner). In this way, the
   * livehash mechanism acts as a revocation service.  An account cannot have two identical livehashes
   * associated. To modify the list of keys in a livehash, the livehash should first be deleted, then
   * recreated with a new list of keys.
   * 
* * Protobuf type {@code proto.CryptoAddLiveHashTransactionBody} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.CryptoAddLiveHashTransactionBody) com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBodyOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.hedera.hashgraph.sdk.proto.CryptoAddLiveHash.internal_static_proto_CryptoAddLiveHashTransactionBody_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.hedera.hashgraph.sdk.proto.CryptoAddLiveHash.internal_static_proto_CryptoAddLiveHashTransactionBody_fieldAccessorTable .ensureFieldAccessorsInitialized( com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody.class, com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody.Builder.class); } // Construct using com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getLiveHashFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; liveHash_ = null; if (liveHashBuilder_ != null) { liveHashBuilder_.dispose(); liveHashBuilder_ = null; } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.hedera.hashgraph.sdk.proto.CryptoAddLiveHash.internal_static_proto_CryptoAddLiveHashTransactionBody_descriptor; } @java.lang.Override public com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody getDefaultInstanceForType() { return com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody.getDefaultInstance(); } @java.lang.Override public com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody build() { com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody buildPartial() { com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody result = new com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody result) { int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) != 0)) { result.liveHash_ = liveHashBuilder_ == null ? liveHash_ : liveHashBuilder_.build(); to_bitField0_ |= 0x00000001; } 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.CryptoAddLiveHashTransactionBody) { return mergeFrom((com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody other) { if (other == com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody.getDefaultInstance()) return this; if (other.hasLiveHash()) { mergeLiveHash(other.getLiveHash()); } 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 26: { input.readMessage( getLiveHashFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000001; break; } // case 26 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.LiveHash liveHash_; private com.google.protobuf.SingleFieldBuilderV3< com.hedera.hashgraph.sdk.proto.LiveHash, com.hedera.hashgraph.sdk.proto.LiveHash.Builder, com.hedera.hashgraph.sdk.proto.LiveHashOrBuilder> liveHashBuilder_; /** *
     **
     * A hash of some credential or certificate, along with the keys of the entities that asserted it validity
     * 
* * .proto.LiveHash liveHash = 3; * @return Whether the liveHash field is set. */ public boolean hasLiveHash() { return ((bitField0_ & 0x00000001) != 0); } /** *
     **
     * A hash of some credential or certificate, along with the keys of the entities that asserted it validity
     * 
* * .proto.LiveHash liveHash = 3; * @return The liveHash. */ public com.hedera.hashgraph.sdk.proto.LiveHash getLiveHash() { if (liveHashBuilder_ == null) { return liveHash_ == null ? com.hedera.hashgraph.sdk.proto.LiveHash.getDefaultInstance() : liveHash_; } else { return liveHashBuilder_.getMessage(); } } /** *
     **
     * A hash of some credential or certificate, along with the keys of the entities that asserted it validity
     * 
* * .proto.LiveHash liveHash = 3; */ public Builder setLiveHash(com.hedera.hashgraph.sdk.proto.LiveHash value) { if (liveHashBuilder_ == null) { if (value == null) { throw new NullPointerException(); } liveHash_ = value; } else { liveHashBuilder_.setMessage(value); } bitField0_ |= 0x00000001; onChanged(); return this; } /** *
     **
     * A hash of some credential or certificate, along with the keys of the entities that asserted it validity
     * 
* * .proto.LiveHash liveHash = 3; */ public Builder setLiveHash( com.hedera.hashgraph.sdk.proto.LiveHash.Builder builderForValue) { if (liveHashBuilder_ == null) { liveHash_ = builderForValue.build(); } else { liveHashBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000001; onChanged(); return this; } /** *
     **
     * A hash of some credential or certificate, along with the keys of the entities that asserted it validity
     * 
* * .proto.LiveHash liveHash = 3; */ public Builder mergeLiveHash(com.hedera.hashgraph.sdk.proto.LiveHash value) { if (liveHashBuilder_ == null) { if (((bitField0_ & 0x00000001) != 0) && liveHash_ != null && liveHash_ != com.hedera.hashgraph.sdk.proto.LiveHash.getDefaultInstance()) { getLiveHashBuilder().mergeFrom(value); } else { liveHash_ = value; } } else { liveHashBuilder_.mergeFrom(value); } if (liveHash_ != null) { bitField0_ |= 0x00000001; onChanged(); } return this; } /** *
     **
     * A hash of some credential or certificate, along with the keys of the entities that asserted it validity
     * 
* * .proto.LiveHash liveHash = 3; */ public Builder clearLiveHash() { bitField0_ = (bitField0_ & ~0x00000001); liveHash_ = null; if (liveHashBuilder_ != null) { liveHashBuilder_.dispose(); liveHashBuilder_ = null; } onChanged(); return this; } /** *
     **
     * A hash of some credential or certificate, along with the keys of the entities that asserted it validity
     * 
* * .proto.LiveHash liveHash = 3; */ public com.hedera.hashgraph.sdk.proto.LiveHash.Builder getLiveHashBuilder() { bitField0_ |= 0x00000001; onChanged(); return getLiveHashFieldBuilder().getBuilder(); } /** *
     **
     * A hash of some credential or certificate, along with the keys of the entities that asserted it validity
     * 
* * .proto.LiveHash liveHash = 3; */ public com.hedera.hashgraph.sdk.proto.LiveHashOrBuilder getLiveHashOrBuilder() { if (liveHashBuilder_ != null) { return liveHashBuilder_.getMessageOrBuilder(); } else { return liveHash_ == null ? com.hedera.hashgraph.sdk.proto.LiveHash.getDefaultInstance() : liveHash_; } } /** *
     **
     * A hash of some credential or certificate, along with the keys of the entities that asserted it validity
     * 
* * .proto.LiveHash liveHash = 3; */ private com.google.protobuf.SingleFieldBuilderV3< com.hedera.hashgraph.sdk.proto.LiveHash, com.hedera.hashgraph.sdk.proto.LiveHash.Builder, com.hedera.hashgraph.sdk.proto.LiveHashOrBuilder> getLiveHashFieldBuilder() { if (liveHashBuilder_ == null) { liveHashBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.hedera.hashgraph.sdk.proto.LiveHash, com.hedera.hashgraph.sdk.proto.LiveHash.Builder, com.hedera.hashgraph.sdk.proto.LiveHashOrBuilder>( getLiveHash(), getParentForChildren(), isClean()); liveHash_ = null; } return liveHashBuilder_; } @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.CryptoAddLiveHashTransactionBody) } // @@protoc_insertion_point(class_scope:proto.CryptoAddLiveHashTransactionBody) private static final com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody(); } public static com.hedera.hashgraph.sdk.proto.CryptoAddLiveHashTransactionBody getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public CryptoAddLiveHashTransactionBody 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.CryptoAddLiveHashTransactionBody getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy