![JAR search and dependency download from the Maven repository](/logo.png)
com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: CryptoAddLiveHash.proto
package com.hederahashgraph.api.proto.java;
/**
*
* 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();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private CryptoAddLiveHashTransactionBody(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 26: {
com.hederahashgraph.api.proto.java.LiveHash.Builder subBuilder = null;
if (liveHash_ != null) {
subBuilder = liveHash_.toBuilder();
}
liveHash_ = input.readMessage(com.hederahashgraph.api.proto.java.LiveHash.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(liveHash_);
liveHash_ = subBuilder.buildPartial();
}
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hederahashgraph.api.proto.java.CryptoAddLiveHash.internal_static_proto_CryptoAddLiveHashTransactionBody_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hederahashgraph.api.proto.java.CryptoAddLiveHash.internal_static_proto_CryptoAddLiveHashTransactionBody_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody.class, com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody.Builder.class);
}
public static final int LIVEHASH_FIELD_NUMBER = 3;
private com.hederahashgraph.api.proto.java.LiveHash liveHash_;
/**
*
* A hash of some credential or certificate, along with the keys of the entities that asserted it validity
*
*
* .proto.LiveHash liveHash = 3;
*/
public boolean hasLiveHash() {
return liveHash_ != null;
}
/**
*
* A hash of some credential or certificate, along with the keys of the entities that asserted it validity
*
*
* .proto.LiveHash liveHash = 3;
*/
public com.hederahashgraph.api.proto.java.LiveHash getLiveHash() {
return liveHash_ == null ? com.hederahashgraph.api.proto.java.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;
*/
public com.hederahashgraph.api.proto.java.LiveHashOrBuilder getLiveHashOrBuilder() {
return getLiveHash();
}
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 (liveHash_ != null) {
output.writeMessage(3, getLiveHash());
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (liveHash_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, getLiveHash());
}
size += unknownFields.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.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody)) {
return super.equals(obj);
}
com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody other = (com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody) obj;
if (hasLiveHash() != other.hasLiveHash()) return false;
if (hasLiveHash()) {
if (!getLiveHash()
.equals(other.getLiveHash())) return false;
}
if (!unknownFields.equals(other.unknownFields)) 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) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hederahashgraph.api.proto.java.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.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hederahashgraph.api.proto.java.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.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.hederahashgraph.api.proto.java.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.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hederahashgraph.api.proto.java.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.hederahashgraph.api.proto.java.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.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBodyOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hederahashgraph.api.proto.java.CryptoAddLiveHash.internal_static_proto_CryptoAddLiveHashTransactionBody_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hederahashgraph.api.proto.java.CryptoAddLiveHash.internal_static_proto_CryptoAddLiveHashTransactionBody_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody.class, com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody.Builder.class);
}
// Construct using com.hederahashgraph.api.proto.java.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) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (liveHashBuilder_ == null) {
liveHash_ = null;
} else {
liveHash_ = null;
liveHashBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.hederahashgraph.api.proto.java.CryptoAddLiveHash.internal_static_proto_CryptoAddLiveHashTransactionBody_descriptor;
}
@java.lang.Override
public com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody getDefaultInstanceForType() {
return com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody.getDefaultInstance();
}
@java.lang.Override
public com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody build() {
com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody buildPartial() {
com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody result = new com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody(this);
if (liveHashBuilder_ == null) {
result.liveHash_ = liveHash_;
} else {
result.liveHash_ = liveHashBuilder_.build();
}
onBuilt();
return result;
}
@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.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody) {
return mergeFrom((com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody other) {
if (other == com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody.getDefaultInstance()) return this;
if (other.hasLiveHash()) {
mergeLiveHash(other.getLiveHash());
}
this.mergeUnknownFields(other.unknownFields);
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 {
com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private com.hederahashgraph.api.proto.java.LiveHash liveHash_;
private com.google.protobuf.SingleFieldBuilderV3<
com.hederahashgraph.api.proto.java.LiveHash, com.hederahashgraph.api.proto.java.LiveHash.Builder, com.hederahashgraph.api.proto.java.LiveHashOrBuilder> liveHashBuilder_;
/**
*
* A hash of some credential or certificate, along with the keys of the entities that asserted it validity
*
*
* .proto.LiveHash liveHash = 3;
*/
public boolean hasLiveHash() {
return liveHashBuilder_ != null || liveHash_ != null;
}
/**
*
* A hash of some credential or certificate, along with the keys of the entities that asserted it validity
*
*
* .proto.LiveHash liveHash = 3;
*/
public com.hederahashgraph.api.proto.java.LiveHash getLiveHash() {
if (liveHashBuilder_ == null) {
return liveHash_ == null ? com.hederahashgraph.api.proto.java.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.hederahashgraph.api.proto.java.LiveHash value) {
if (liveHashBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
liveHash_ = value;
onChanged();
} else {
liveHashBuilder_.setMessage(value);
}
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.hederahashgraph.api.proto.java.LiveHash.Builder builderForValue) {
if (liveHashBuilder_ == null) {
liveHash_ = builderForValue.build();
onChanged();
} else {
liveHashBuilder_.setMessage(builderForValue.build());
}
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.hederahashgraph.api.proto.java.LiveHash value) {
if (liveHashBuilder_ == null) {
if (liveHash_ != null) {
liveHash_ =
com.hederahashgraph.api.proto.java.LiveHash.newBuilder(liveHash_).mergeFrom(value).buildPartial();
} else {
liveHash_ = value;
}
onChanged();
} else {
liveHashBuilder_.mergeFrom(value);
}
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() {
if (liveHashBuilder_ == null) {
liveHash_ = null;
onChanged();
} else {
liveHash_ = null;
liveHashBuilder_ = null;
}
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.hederahashgraph.api.proto.java.LiveHash.Builder getLiveHashBuilder() {
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.hederahashgraph.api.proto.java.LiveHashOrBuilder getLiveHashOrBuilder() {
if (liveHashBuilder_ != null) {
return liveHashBuilder_.getMessageOrBuilder();
} else {
return liveHash_ == null ?
com.hederahashgraph.api.proto.java.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.hederahashgraph.api.proto.java.LiveHash, com.hederahashgraph.api.proto.java.LiveHash.Builder, com.hederahashgraph.api.proto.java.LiveHashOrBuilder>
getLiveHashFieldBuilder() {
if (liveHashBuilder_ == null) {
liveHashBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.hederahashgraph.api.proto.java.LiveHash, com.hederahashgraph.api.proto.java.LiveHash.Builder, com.hederahashgraph.api.proto.java.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.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody();
}
public static com.hederahashgraph.api.proto.java.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 {
return new CryptoAddLiveHashTransactionBody(input, extensionRegistry);
}
};
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.hederahashgraph.api.proto.java.CryptoAddLiveHashTransactionBody getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy