com.hedera.services.stream.proto.SignatureObject Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: signature_file.proto
package com.hedera.services.stream.proto;
/**
*
**
* A Signature defined by its type, length, checksum and signature bytes and the hash that is signed
*
*
* Protobuf type {@code proto.SignatureObject}
*/
public final class SignatureObject extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:proto.SignatureObject)
SignatureObjectOrBuilder {
private static final long serialVersionUID = 0L;
// Use SignatureObject.newBuilder() to construct.
private SignatureObject(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private SignatureObject() {
type_ = 0;
signature_ = com.google.protobuf.ByteString.EMPTY;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new SignatureObject();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private SignatureObject(
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 8: {
int rawValue = input.readEnum();
type_ = rawValue;
break;
}
case 16: {
length_ = input.readInt32();
break;
}
case 24: {
checksum_ = input.readInt32();
break;
}
case 34: {
signature_ = input.readBytes();
break;
}
case 42: {
com.hedera.services.stream.proto.HashObject.Builder subBuilder = null;
if (hashObject_ != null) {
subBuilder = hashObject_.toBuilder();
}
hashObject_ = input.readMessage(com.hedera.services.stream.proto.HashObject.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(hashObject_);
hashObject_ = 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.hedera.services.stream.proto.SignatureFileOuterClass.internal_static_proto_SignatureObject_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hedera.services.stream.proto.SignatureFileOuterClass.internal_static_proto_SignatureObject_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hedera.services.stream.proto.SignatureObject.class, com.hedera.services.stream.proto.SignatureObject.Builder.class);
}
public static final int TYPE_FIELD_NUMBER = 1;
private int type_;
/**
*
**
* The signature type
*
*
* .proto.SignatureType type = 1;
* @return The enum numeric value on the wire for type.
*/
@java.lang.Override public int getTypeValue() {
return type_;
}
/**
*
**
* The signature type
*
*
* .proto.SignatureType type = 1;
* @return The type.
*/
@java.lang.Override public com.hedera.services.stream.proto.SignatureType getType() {
@SuppressWarnings("deprecation")
com.hedera.services.stream.proto.SignatureType result = com.hedera.services.stream.proto.SignatureType.valueOf(type_);
return result == null ? com.hedera.services.stream.proto.SignatureType.UNRECOGNIZED : result;
}
public static final int LENGTH_FIELD_NUMBER = 2;
private int length_;
/**
*
**
* Signature length
*
*
* int32 length = 2;
* @return The length.
*/
@java.lang.Override
public int getLength() {
return length_;
}
public static final int CHECKSUM_FIELD_NUMBER = 3;
private int checksum_;
/**
*
**
* Signature checksum
*
*
* int32 checksum = 3;
* @return The checksum.
*/
@java.lang.Override
public int getChecksum() {
return checksum_;
}
public static final int SIGNATURE_FIELD_NUMBER = 4;
private com.google.protobuf.ByteString signature_;
/**
*
**
* Signature bytes
*
*
* bytes signature = 4;
* @return The signature.
*/
@java.lang.Override
public com.google.protobuf.ByteString getSignature() {
return signature_;
}
public static final int HASH_OBJECT_FIELD_NUMBER = 5;
private com.hedera.services.stream.proto.HashObject hashObject_;
/**
*
**
* The hash that is signed by this signature
*
*
* .proto.HashObject hash_object = 5;
* @return Whether the hashObject field is set.
*/
@java.lang.Override
public boolean hasHashObject() {
return hashObject_ != null;
}
/**
*
**
* The hash that is signed by this signature
*
*
* .proto.HashObject hash_object = 5;
* @return The hashObject.
*/
@java.lang.Override
public com.hedera.services.stream.proto.HashObject getHashObject() {
return hashObject_ == null ? com.hedera.services.stream.proto.HashObject.getDefaultInstance() : hashObject_;
}
/**
*
**
* The hash that is signed by this signature
*
*
* .proto.HashObject hash_object = 5;
*/
@java.lang.Override
public com.hedera.services.stream.proto.HashObjectOrBuilder getHashObjectOrBuilder() {
return getHashObject();
}
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 (type_ != com.hedera.services.stream.proto.SignatureType.SIGNATURE_TYPE_UNKNOWN.getNumber()) {
output.writeEnum(1, type_);
}
if (length_ != 0) {
output.writeInt32(2, length_);
}
if (checksum_ != 0) {
output.writeInt32(3, checksum_);
}
if (!signature_.isEmpty()) {
output.writeBytes(4, signature_);
}
if (hashObject_ != null) {
output.writeMessage(5, getHashObject());
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (type_ != com.hedera.services.stream.proto.SignatureType.SIGNATURE_TYPE_UNKNOWN.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(1, type_);
}
if (length_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(2, length_);
}
if (checksum_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(3, checksum_);
}
if (!signature_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(4, signature_);
}
if (hashObject_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(5, getHashObject());
}
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.hedera.services.stream.proto.SignatureObject)) {
return super.equals(obj);
}
com.hedera.services.stream.proto.SignatureObject other = (com.hedera.services.stream.proto.SignatureObject) obj;
if (type_ != other.type_) return false;
if (getLength()
!= other.getLength()) return false;
if (getChecksum()
!= other.getChecksum()) return false;
if (!getSignature()
.equals(other.getSignature())) return false;
if (hasHashObject() != other.hasHashObject()) return false;
if (hasHashObject()) {
if (!getHashObject()
.equals(other.getHashObject())) 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();
hash = (37 * hash) + TYPE_FIELD_NUMBER;
hash = (53 * hash) + type_;
hash = (37 * hash) + LENGTH_FIELD_NUMBER;
hash = (53 * hash) + getLength();
hash = (37 * hash) + CHECKSUM_FIELD_NUMBER;
hash = (53 * hash) + getChecksum();
hash = (37 * hash) + SIGNATURE_FIELD_NUMBER;
hash = (53 * hash) + getSignature().hashCode();
if (hasHashObject()) {
hash = (37 * hash) + HASH_OBJECT_FIELD_NUMBER;
hash = (53 * hash) + getHashObject().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.hedera.services.stream.proto.SignatureObject parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.services.stream.proto.SignatureObject parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hedera.services.stream.proto.SignatureObject parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.services.stream.proto.SignatureObject 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.services.stream.proto.SignatureObject parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.services.stream.proto.SignatureObject parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hedera.services.stream.proto.SignatureObject parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hedera.services.stream.proto.SignatureObject 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.services.stream.proto.SignatureObject parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.hedera.services.stream.proto.SignatureObject 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.services.stream.proto.SignatureObject parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hedera.services.stream.proto.SignatureObject 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.services.stream.proto.SignatureObject 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;
}
/**
*
**
* A Signature defined by its type, length, checksum and signature bytes and the hash that is signed
*
*
* Protobuf type {@code proto.SignatureObject}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:proto.SignatureObject)
com.hedera.services.stream.proto.SignatureObjectOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hedera.services.stream.proto.SignatureFileOuterClass.internal_static_proto_SignatureObject_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hedera.services.stream.proto.SignatureFileOuterClass.internal_static_proto_SignatureObject_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hedera.services.stream.proto.SignatureObject.class, com.hedera.services.stream.proto.SignatureObject.Builder.class);
}
// Construct using com.hedera.services.stream.proto.SignatureObject.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();
type_ = 0;
length_ = 0;
checksum_ = 0;
signature_ = com.google.protobuf.ByteString.EMPTY;
if (hashObjectBuilder_ == null) {
hashObject_ = null;
} else {
hashObject_ = null;
hashObjectBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.hedera.services.stream.proto.SignatureFileOuterClass.internal_static_proto_SignatureObject_descriptor;
}
@java.lang.Override
public com.hedera.services.stream.proto.SignatureObject getDefaultInstanceForType() {
return com.hedera.services.stream.proto.SignatureObject.getDefaultInstance();
}
@java.lang.Override
public com.hedera.services.stream.proto.SignatureObject build() {
com.hedera.services.stream.proto.SignatureObject result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.hedera.services.stream.proto.SignatureObject buildPartial() {
com.hedera.services.stream.proto.SignatureObject result = new com.hedera.services.stream.proto.SignatureObject(this);
result.type_ = type_;
result.length_ = length_;
result.checksum_ = checksum_;
result.signature_ = signature_;
if (hashObjectBuilder_ == null) {
result.hashObject_ = hashObject_;
} else {
result.hashObject_ = hashObjectBuilder_.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.hedera.services.stream.proto.SignatureObject) {
return mergeFrom((com.hedera.services.stream.proto.SignatureObject)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.hedera.services.stream.proto.SignatureObject other) {
if (other == com.hedera.services.stream.proto.SignatureObject.getDefaultInstance()) return this;
if (other.type_ != 0) {
setTypeValue(other.getTypeValue());
}
if (other.getLength() != 0) {
setLength(other.getLength());
}
if (other.getChecksum() != 0) {
setChecksum(other.getChecksum());
}
if (other.getSignature() != com.google.protobuf.ByteString.EMPTY) {
setSignature(other.getSignature());
}
if (other.hasHashObject()) {
mergeHashObject(other.getHashObject());
}
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.hedera.services.stream.proto.SignatureObject parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.hedera.services.stream.proto.SignatureObject) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int type_ = 0;
/**
*
**
* The signature type
*
*
* .proto.SignatureType type = 1;
* @return The enum numeric value on the wire for type.
*/
@java.lang.Override public int getTypeValue() {
return type_;
}
/**
*
**
* The signature type
*
*
* .proto.SignatureType type = 1;
* @param value The enum numeric value on the wire for type to set.
* @return This builder for chaining.
*/
public Builder setTypeValue(int value) {
type_ = value;
onChanged();
return this;
}
/**
*
**
* The signature type
*
*
* .proto.SignatureType type = 1;
* @return The type.
*/
@java.lang.Override
public com.hedera.services.stream.proto.SignatureType getType() {
@SuppressWarnings("deprecation")
com.hedera.services.stream.proto.SignatureType result = com.hedera.services.stream.proto.SignatureType.valueOf(type_);
return result == null ? com.hedera.services.stream.proto.SignatureType.UNRECOGNIZED : result;
}
/**
*
**
* The signature type
*
*
* .proto.SignatureType type = 1;
* @param value The type to set.
* @return This builder for chaining.
*/
public Builder setType(com.hedera.services.stream.proto.SignatureType value) {
if (value == null) {
throw new NullPointerException();
}
type_ = value.getNumber();
onChanged();
return this;
}
/**
*
**
* The signature type
*
*
* .proto.SignatureType type = 1;
* @return This builder for chaining.
*/
public Builder clearType() {
type_ = 0;
onChanged();
return this;
}
private int length_ ;
/**
*
**
* Signature length
*
*
* int32 length = 2;
* @return The length.
*/
@java.lang.Override
public int getLength() {
return length_;
}
/**
*
**
* Signature length
*
*
* int32 length = 2;
* @param value The length to set.
* @return This builder for chaining.
*/
public Builder setLength(int value) {
length_ = value;
onChanged();
return this;
}
/**
*
**
* Signature length
*
*
* int32 length = 2;
* @return This builder for chaining.
*/
public Builder clearLength() {
length_ = 0;
onChanged();
return this;
}
private int checksum_ ;
/**
*
**
* Signature checksum
*
*
* int32 checksum = 3;
* @return The checksum.
*/
@java.lang.Override
public int getChecksum() {
return checksum_;
}
/**
*
**
* Signature checksum
*
*
* int32 checksum = 3;
* @param value The checksum to set.
* @return This builder for chaining.
*/
public Builder setChecksum(int value) {
checksum_ = value;
onChanged();
return this;
}
/**
*
**
* Signature checksum
*
*
* int32 checksum = 3;
* @return This builder for chaining.
*/
public Builder clearChecksum() {
checksum_ = 0;
onChanged();
return this;
}
private com.google.protobuf.ByteString signature_ = com.google.protobuf.ByteString.EMPTY;
/**
*
**
* Signature bytes
*
*
* bytes signature = 4;
* @return The signature.
*/
@java.lang.Override
public com.google.protobuf.ByteString getSignature() {
return signature_;
}
/**
*
**
* Signature bytes
*
*
* bytes signature = 4;
* @param value The signature to set.
* @return This builder for chaining.
*/
public Builder setSignature(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
signature_ = value;
onChanged();
return this;
}
/**
*
**
* Signature bytes
*
*
* bytes signature = 4;
* @return This builder for chaining.
*/
public Builder clearSignature() {
signature_ = getDefaultInstance().getSignature();
onChanged();
return this;
}
private com.hedera.services.stream.proto.HashObject hashObject_;
private com.google.protobuf.SingleFieldBuilderV3<
com.hedera.services.stream.proto.HashObject, com.hedera.services.stream.proto.HashObject.Builder, com.hedera.services.stream.proto.HashObjectOrBuilder> hashObjectBuilder_;
/**
*
**
* The hash that is signed by this signature
*
*
* .proto.HashObject hash_object = 5;
* @return Whether the hashObject field is set.
*/
public boolean hasHashObject() {
return hashObjectBuilder_ != null || hashObject_ != null;
}
/**
*
**
* The hash that is signed by this signature
*
*
* .proto.HashObject hash_object = 5;
* @return The hashObject.
*/
public com.hedera.services.stream.proto.HashObject getHashObject() {
if (hashObjectBuilder_ == null) {
return hashObject_ == null ? com.hedera.services.stream.proto.HashObject.getDefaultInstance() : hashObject_;
} else {
return hashObjectBuilder_.getMessage();
}
}
/**
*
**
* The hash that is signed by this signature
*
*
* .proto.HashObject hash_object = 5;
*/
public Builder setHashObject(com.hedera.services.stream.proto.HashObject value) {
if (hashObjectBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
hashObject_ = value;
onChanged();
} else {
hashObjectBuilder_.setMessage(value);
}
return this;
}
/**
*
**
* The hash that is signed by this signature
*
*
* .proto.HashObject hash_object = 5;
*/
public Builder setHashObject(
com.hedera.services.stream.proto.HashObject.Builder builderForValue) {
if (hashObjectBuilder_ == null) {
hashObject_ = builderForValue.build();
onChanged();
} else {
hashObjectBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
**
* The hash that is signed by this signature
*
*
* .proto.HashObject hash_object = 5;
*/
public Builder mergeHashObject(com.hedera.services.stream.proto.HashObject value) {
if (hashObjectBuilder_ == null) {
if (hashObject_ != null) {
hashObject_ =
com.hedera.services.stream.proto.HashObject.newBuilder(hashObject_).mergeFrom(value).buildPartial();
} else {
hashObject_ = value;
}
onChanged();
} else {
hashObjectBuilder_.mergeFrom(value);
}
return this;
}
/**
*
**
* The hash that is signed by this signature
*
*
* .proto.HashObject hash_object = 5;
*/
public Builder clearHashObject() {
if (hashObjectBuilder_ == null) {
hashObject_ = null;
onChanged();
} else {
hashObject_ = null;
hashObjectBuilder_ = null;
}
return this;
}
/**
*
**
* The hash that is signed by this signature
*
*
* .proto.HashObject hash_object = 5;
*/
public com.hedera.services.stream.proto.HashObject.Builder getHashObjectBuilder() {
onChanged();
return getHashObjectFieldBuilder().getBuilder();
}
/**
*
**
* The hash that is signed by this signature
*
*
* .proto.HashObject hash_object = 5;
*/
public com.hedera.services.stream.proto.HashObjectOrBuilder getHashObjectOrBuilder() {
if (hashObjectBuilder_ != null) {
return hashObjectBuilder_.getMessageOrBuilder();
} else {
return hashObject_ == null ?
com.hedera.services.stream.proto.HashObject.getDefaultInstance() : hashObject_;
}
}
/**
*
**
* The hash that is signed by this signature
*
*
* .proto.HashObject hash_object = 5;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.hedera.services.stream.proto.HashObject, com.hedera.services.stream.proto.HashObject.Builder, com.hedera.services.stream.proto.HashObjectOrBuilder>
getHashObjectFieldBuilder() {
if (hashObjectBuilder_ == null) {
hashObjectBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.hedera.services.stream.proto.HashObject, com.hedera.services.stream.proto.HashObject.Builder, com.hedera.services.stream.proto.HashObjectOrBuilder>(
getHashObject(),
getParentForChildren(),
isClean());
hashObject_ = null;
}
return hashObjectBuilder_;
}
@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.SignatureObject)
}
// @@protoc_insertion_point(class_scope:proto.SignatureObject)
private static final com.hedera.services.stream.proto.SignatureObject DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.hedera.services.stream.proto.SignatureObject();
}
public static com.hedera.services.stream.proto.SignatureObject getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public SignatureObject parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new SignatureObject(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.hedera.services.stream.proto.SignatureObject getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy