com.hederahashgraph.api.proto.java.ThresholdSignature Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: basic_types.proto
package com.hederahashgraph.api.proto.java;
/**
*
**
* This message is <b>DEPRECATED</b> and <b>UNUSABLE</b> with network nodes. It is retained
* here only for historical reasons.
* Please use the SignaturePair and SignatureMap messages.
*
*
* Protobuf type {@code proto.ThresholdSignature}
*/
@java.lang.Deprecated public final class ThresholdSignature extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:proto.ThresholdSignature)
ThresholdSignatureOrBuilder {
private static final long serialVersionUID = 0L;
// Use ThresholdSignature.newBuilder() to construct.
private ThresholdSignature(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ThresholdSignature() {
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new ThresholdSignature();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ThresholdSignature(
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 18: {
com.hederahashgraph.api.proto.java.SignatureList.Builder subBuilder = null;
if (sigs_ != null) {
subBuilder = sigs_.toBuilder();
}
sigs_ = input.readMessage(com.hederahashgraph.api.proto.java.SignatureList.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(sigs_);
sigs_ = 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.BasicTypes.internal_static_proto_ThresholdSignature_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hederahashgraph.api.proto.java.BasicTypes.internal_static_proto_ThresholdSignature_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hederahashgraph.api.proto.java.ThresholdSignature.class, com.hederahashgraph.api.proto.java.ThresholdSignature.Builder.class);
}
public static final int SIGS_FIELD_NUMBER = 2;
private com.hederahashgraph.api.proto.java.SignatureList sigs_;
/**
*
**
* for an N-of-M threshold key, this is a list of M signatures, at least N of which must be
* non-null
*
*
* .proto.SignatureList sigs = 2;
* @return Whether the sigs field is set.
*/
@java.lang.Override
public boolean hasSigs() {
return sigs_ != null;
}
/**
*
**
* for an N-of-M threshold key, this is a list of M signatures, at least N of which must be
* non-null
*
*
* .proto.SignatureList sigs = 2;
* @return The sigs.
*/
@java.lang.Override
public com.hederahashgraph.api.proto.java.SignatureList getSigs() {
return sigs_ == null ? com.hederahashgraph.api.proto.java.SignatureList.getDefaultInstance() : sigs_;
}
/**
*
**
* for an N-of-M threshold key, this is a list of M signatures, at least N of which must be
* non-null
*
*
* .proto.SignatureList sigs = 2;
*/
@java.lang.Override
public com.hederahashgraph.api.proto.java.SignatureListOrBuilder getSigsOrBuilder() {
return getSigs();
}
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 (sigs_ != null) {
output.writeMessage(2, getSigs());
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (sigs_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getSigs());
}
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.ThresholdSignature)) {
return super.equals(obj);
}
com.hederahashgraph.api.proto.java.ThresholdSignature other = (com.hederahashgraph.api.proto.java.ThresholdSignature) obj;
if (hasSigs() != other.hasSigs()) return false;
if (hasSigs()) {
if (!getSigs()
.equals(other.getSigs())) 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 (hasSigs()) {
hash = (37 * hash) + SIGS_FIELD_NUMBER;
hash = (53 * hash) + getSigs().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.hederahashgraph.api.proto.java.ThresholdSignature parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hederahashgraph.api.proto.java.ThresholdSignature 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.ThresholdSignature parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hederahashgraph.api.proto.java.ThresholdSignature 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.ThresholdSignature parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hederahashgraph.api.proto.java.ThresholdSignature 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.ThresholdSignature parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hederahashgraph.api.proto.java.ThresholdSignature 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.ThresholdSignature parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.hederahashgraph.api.proto.java.ThresholdSignature 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.ThresholdSignature 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.ThresholdSignature 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.ThresholdSignature 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;
}
/**
*
**
* This message is <b>DEPRECATED</b> and <b>UNUSABLE</b> with network nodes. It is retained
* here only for historical reasons.
* Please use the SignaturePair and SignatureMap messages.
*
*
* Protobuf type {@code proto.ThresholdSignature}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:proto.ThresholdSignature)
com.hederahashgraph.api.proto.java.ThresholdSignatureOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hederahashgraph.api.proto.java.BasicTypes.internal_static_proto_ThresholdSignature_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hederahashgraph.api.proto.java.BasicTypes.internal_static_proto_ThresholdSignature_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hederahashgraph.api.proto.java.ThresholdSignature.class, com.hederahashgraph.api.proto.java.ThresholdSignature.Builder.class);
}
// Construct using com.hederahashgraph.api.proto.java.ThresholdSignature.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 (sigsBuilder_ == null) {
sigs_ = null;
} else {
sigs_ = null;
sigsBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.hederahashgraph.api.proto.java.BasicTypes.internal_static_proto_ThresholdSignature_descriptor;
}
@java.lang.Override
public com.hederahashgraph.api.proto.java.ThresholdSignature getDefaultInstanceForType() {
return com.hederahashgraph.api.proto.java.ThresholdSignature.getDefaultInstance();
}
@java.lang.Override
public com.hederahashgraph.api.proto.java.ThresholdSignature build() {
com.hederahashgraph.api.proto.java.ThresholdSignature result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.hederahashgraph.api.proto.java.ThresholdSignature buildPartial() {
com.hederahashgraph.api.proto.java.ThresholdSignature result = new com.hederahashgraph.api.proto.java.ThresholdSignature(this);
if (sigsBuilder_ == null) {
result.sigs_ = sigs_;
} else {
result.sigs_ = sigsBuilder_.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.ThresholdSignature) {
return mergeFrom((com.hederahashgraph.api.proto.java.ThresholdSignature)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.hederahashgraph.api.proto.java.ThresholdSignature other) {
if (other == com.hederahashgraph.api.proto.java.ThresholdSignature.getDefaultInstance()) return this;
if (other.hasSigs()) {
mergeSigs(other.getSigs());
}
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.ThresholdSignature parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.hederahashgraph.api.proto.java.ThresholdSignature) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private com.hederahashgraph.api.proto.java.SignatureList sigs_;
private com.google.protobuf.SingleFieldBuilderV3<
com.hederahashgraph.api.proto.java.SignatureList, com.hederahashgraph.api.proto.java.SignatureList.Builder, com.hederahashgraph.api.proto.java.SignatureListOrBuilder> sigsBuilder_;
/**
*
**
* for an N-of-M threshold key, this is a list of M signatures, at least N of which must be
* non-null
*
*
* .proto.SignatureList sigs = 2;
* @return Whether the sigs field is set.
*/
public boolean hasSigs() {
return sigsBuilder_ != null || sigs_ != null;
}
/**
*
**
* for an N-of-M threshold key, this is a list of M signatures, at least N of which must be
* non-null
*
*
* .proto.SignatureList sigs = 2;
* @return The sigs.
*/
public com.hederahashgraph.api.proto.java.SignatureList getSigs() {
if (sigsBuilder_ == null) {
return sigs_ == null ? com.hederahashgraph.api.proto.java.SignatureList.getDefaultInstance() : sigs_;
} else {
return sigsBuilder_.getMessage();
}
}
/**
*
**
* for an N-of-M threshold key, this is a list of M signatures, at least N of which must be
* non-null
*
*
* .proto.SignatureList sigs = 2;
*/
public Builder setSigs(com.hederahashgraph.api.proto.java.SignatureList value) {
if (sigsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
sigs_ = value;
onChanged();
} else {
sigsBuilder_.setMessage(value);
}
return this;
}
/**
*
**
* for an N-of-M threshold key, this is a list of M signatures, at least N of which must be
* non-null
*
*
* .proto.SignatureList sigs = 2;
*/
public Builder setSigs(
com.hederahashgraph.api.proto.java.SignatureList.Builder builderForValue) {
if (sigsBuilder_ == null) {
sigs_ = builderForValue.build();
onChanged();
} else {
sigsBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
**
* for an N-of-M threshold key, this is a list of M signatures, at least N of which must be
* non-null
*
*
* .proto.SignatureList sigs = 2;
*/
public Builder mergeSigs(com.hederahashgraph.api.proto.java.SignatureList value) {
if (sigsBuilder_ == null) {
if (sigs_ != null) {
sigs_ =
com.hederahashgraph.api.proto.java.SignatureList.newBuilder(sigs_).mergeFrom(value).buildPartial();
} else {
sigs_ = value;
}
onChanged();
} else {
sigsBuilder_.mergeFrom(value);
}
return this;
}
/**
*
**
* for an N-of-M threshold key, this is a list of M signatures, at least N of which must be
* non-null
*
*
* .proto.SignatureList sigs = 2;
*/
public Builder clearSigs() {
if (sigsBuilder_ == null) {
sigs_ = null;
onChanged();
} else {
sigs_ = null;
sigsBuilder_ = null;
}
return this;
}
/**
*
**
* for an N-of-M threshold key, this is a list of M signatures, at least N of which must be
* non-null
*
*
* .proto.SignatureList sigs = 2;
*/
public com.hederahashgraph.api.proto.java.SignatureList.Builder getSigsBuilder() {
onChanged();
return getSigsFieldBuilder().getBuilder();
}
/**
*
**
* for an N-of-M threshold key, this is a list of M signatures, at least N of which must be
* non-null
*
*
* .proto.SignatureList sigs = 2;
*/
public com.hederahashgraph.api.proto.java.SignatureListOrBuilder getSigsOrBuilder() {
if (sigsBuilder_ != null) {
return sigsBuilder_.getMessageOrBuilder();
} else {
return sigs_ == null ?
com.hederahashgraph.api.proto.java.SignatureList.getDefaultInstance() : sigs_;
}
}
/**
*
**
* for an N-of-M threshold key, this is a list of M signatures, at least N of which must be
* non-null
*
*
* .proto.SignatureList sigs = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.hederahashgraph.api.proto.java.SignatureList, com.hederahashgraph.api.proto.java.SignatureList.Builder, com.hederahashgraph.api.proto.java.SignatureListOrBuilder>
getSigsFieldBuilder() {
if (sigsBuilder_ == null) {
sigsBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.hederahashgraph.api.proto.java.SignatureList, com.hederahashgraph.api.proto.java.SignatureList.Builder, com.hederahashgraph.api.proto.java.SignatureListOrBuilder>(
getSigs(),
getParentForChildren(),
isClean());
sigs_ = null;
}
return sigsBuilder_;
}
@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.ThresholdSignature)
}
// @@protoc_insertion_point(class_scope:proto.ThresholdSignature)
private static final com.hederahashgraph.api.proto.java.ThresholdSignature DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.hederahashgraph.api.proto.java.ThresholdSignature();
}
public static com.hederahashgraph.api.proto.java.ThresholdSignature getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ThresholdSignature parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ThresholdSignature(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.ThresholdSignature getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}