Checkpoint.java
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: sigstore_rekor.proto
// Protobuf Java Version: 4.30.2
package dev.sigstore.proto.rekor.v1;
/**
* <pre>
* The checkpoint MUST contain an origin string as a unique log identifier,
* the tree size, and the root hash. It MAY also be followed by optional data,
* and clients MUST NOT assume optional data. The checkpoint MUST also contain
* a signature over the root hash (tree head). The checkpoint MAY contain additional
* signatures, but the first SHOULD be the signature from the log. Checkpoint contents
* are concatenated with newlines into a single string.
* The checkpoint format is described in
* https://github.com/transparency-dev/formats/blob/main/log/README.md
* and https://github.com/C2SP/C2SP/blob/main/tlog-checkpoint.md.
* An example implementation can be found in https://github.com/sigstore/rekor/blob/main/pkg/util/signed_note.go
* </pre>
*
* Protobuf type {@code dev.sigstore.rekor.v1.Checkpoint}
*/
@javax.annotation.Generated(value="protoc", comments="annotations:Checkpoint.java.pb.meta")
public final class Checkpoint extends
com.google.protobuf.GeneratedMessage implements
// @@protoc_insertion_point(message_implements:dev.sigstore.rekor.v1.Checkpoint)
CheckpointOrBuilder {
private static final long serialVersionUID = 0L;
static {
com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion(
com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC,
/* major= */ 4,
/* minor= */ 30,
/* patch= */ 2,
/* suffix= */ "",
Checkpoint.class.getName());
}
// Use Checkpoint.newBuilder() to construct.
private Checkpoint(com.google.protobuf.GeneratedMessage.Builder<?> builder) {
super(builder);
}
private Checkpoint() {
envelope_ = "";
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return dev.sigstore.proto.rekor.v1.RekorProto.internal_static_dev_sigstore_rekor_v1_Checkpoint_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return dev.sigstore.proto.rekor.v1.RekorProto.internal_static_dev_sigstore_rekor_v1_Checkpoint_fieldAccessorTable
.ensureFieldAccessorsInitialized(
dev.sigstore.proto.rekor.v1.Checkpoint.class, dev.sigstore.proto.rekor.v1.Checkpoint.Builder.class);
}
public static final int ENVELOPE_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object envelope_ = "";
/**
* <code>string envelope = 1 [(.google.api.field_behavior) = REQUIRED];</code>
* @return The envelope.
*/
@java.lang.Override
public java.lang.String getEnvelope() {
java.lang.Object ref = envelope_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
envelope_ = s;
return s;
}
}
/**
* <code>string envelope = 1 [(.google.api.field_behavior) = REQUIRED];</code>
* @return The bytes for envelope.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getEnvelopeBytes() {
java.lang.Object ref = envelope_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
envelope_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
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 (!com.google.protobuf.GeneratedMessage.isStringEmpty(envelope_)) {
com.google.protobuf.GeneratedMessage.writeString(output, 1, envelope_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessage.isStringEmpty(envelope_)) {
size += com.google.protobuf.GeneratedMessage.computeStringSize(1, envelope_);
}
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 dev.sigstore.proto.rekor.v1.Checkpoint)) {
return super.equals(obj);
}
dev.sigstore.proto.rekor.v1.Checkpoint other = (dev.sigstore.proto.rekor.v1.Checkpoint) obj;
if (!getEnvelope()
.equals(other.getEnvelope())) 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();
hash = (37 * hash) + ENVELOPE_FIELD_NUMBER;
hash = (53 * hash) + getEnvelope().hashCode();
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static dev.sigstore.proto.rekor.v1.Checkpoint parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static dev.sigstore.proto.rekor.v1.Checkpoint parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static dev.sigstore.proto.rekor.v1.Checkpoint parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static dev.sigstore.proto.rekor.v1.Checkpoint parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static dev.sigstore.proto.rekor.v1.Checkpoint parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static dev.sigstore.proto.rekor.v1.Checkpoint parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static dev.sigstore.proto.rekor.v1.Checkpoint parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input);
}
public static dev.sigstore.proto.rekor.v1.Checkpoint parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static dev.sigstore.proto.rekor.v1.Checkpoint parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseDelimitedWithIOException(PARSER, input);
}
public static dev.sigstore.proto.rekor.v1.Checkpoint parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static dev.sigstore.proto.rekor.v1.Checkpoint parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input);
}
public static dev.sigstore.proto.rekor.v1.Checkpoint parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(dev.sigstore.proto.rekor.v1.Checkpoint 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.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* <pre>
* The checkpoint MUST contain an origin string as a unique log identifier,
* the tree size, and the root hash. It MAY also be followed by optional data,
* and clients MUST NOT assume optional data. The checkpoint MUST also contain
* a signature over the root hash (tree head). The checkpoint MAY contain additional
* signatures, but the first SHOULD be the signature from the log. Checkpoint contents
* are concatenated with newlines into a single string.
* The checkpoint format is described in
* https://github.com/transparency-dev/formats/blob/main/log/README.md
* and https://github.com/C2SP/C2SP/blob/main/tlog-checkpoint.md.
* An example implementation can be found in https://github.com/sigstore/rekor/blob/main/pkg/util/signed_note.go
* </pre>
*
* Protobuf type {@code dev.sigstore.rekor.v1.Checkpoint}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder<Builder> implements
// @@protoc_insertion_point(builder_implements:dev.sigstore.rekor.v1.Checkpoint)
dev.sigstore.proto.rekor.v1.CheckpointOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return dev.sigstore.proto.rekor.v1.RekorProto.internal_static_dev_sigstore_rekor_v1_Checkpoint_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return dev.sigstore.proto.rekor.v1.RekorProto.internal_static_dev_sigstore_rekor_v1_Checkpoint_fieldAccessorTable
.ensureFieldAccessorsInitialized(
dev.sigstore.proto.rekor.v1.Checkpoint.class, dev.sigstore.proto.rekor.v1.Checkpoint.Builder.class);
}
// Construct using dev.sigstore.proto.rekor.v1.Checkpoint.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
envelope_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return dev.sigstore.proto.rekor.v1.RekorProto.internal_static_dev_sigstore_rekor_v1_Checkpoint_descriptor;
}
@java.lang.Override
public dev.sigstore.proto.rekor.v1.Checkpoint getDefaultInstanceForType() {
return dev.sigstore.proto.rekor.v1.Checkpoint.getDefaultInstance();
}
@java.lang.Override
public dev.sigstore.proto.rekor.v1.Checkpoint build() {
dev.sigstore.proto.rekor.v1.Checkpoint result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public dev.sigstore.proto.rekor.v1.Checkpoint buildPartial() {
dev.sigstore.proto.rekor.v1.Checkpoint result = new dev.sigstore.proto.rekor.v1.Checkpoint(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(dev.sigstore.proto.rekor.v1.Checkpoint result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.envelope_ = envelope_;
}
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof dev.sigstore.proto.rekor.v1.Checkpoint) {
return mergeFrom((dev.sigstore.proto.rekor.v1.Checkpoint)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(dev.sigstore.proto.rekor.v1.Checkpoint other) {
if (other == dev.sigstore.proto.rekor.v1.Checkpoint.getDefaultInstance()) return this;
if (!other.getEnvelope().isEmpty()) {
envelope_ = other.envelope_;
bitField0_ |= 0x00000001;
onChanged();
}
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 10: {
envelope_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
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 java.lang.Object envelope_ = "";
/**
* <code>string envelope = 1 [(.google.api.field_behavior) = REQUIRED];</code>
* @return The envelope.
*/
public java.lang.String getEnvelope() {
java.lang.Object ref = envelope_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
envelope_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* <code>string envelope = 1 [(.google.api.field_behavior) = REQUIRED];</code>
* @return The bytes for envelope.
*/
public com.google.protobuf.ByteString
getEnvelopeBytes() {
java.lang.Object ref = envelope_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
envelope_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* <code>string envelope = 1 [(.google.api.field_behavior) = REQUIRED];</code>
* @param value The envelope to set.
* @return This builder for chaining.
*/
public Builder setEnvelope(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
envelope_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* <code>string envelope = 1 [(.google.api.field_behavior) = REQUIRED];</code>
* @return This builder for chaining.
*/
public Builder clearEnvelope() {
envelope_ = getDefaultInstance().getEnvelope();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
* <code>string envelope = 1 [(.google.api.field_behavior) = REQUIRED];</code>
* @param value The bytes for envelope to set.
* @return This builder for chaining.
*/
public Builder setEnvelopeBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
envelope_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:dev.sigstore.rekor.v1.Checkpoint)
}
// @@protoc_insertion_point(class_scope:dev.sigstore.rekor.v1.Checkpoint)
private static final dev.sigstore.proto.rekor.v1.Checkpoint DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new dev.sigstore.proto.rekor.v1.Checkpoint();
}
public static dev.sigstore.proto.rekor.v1.Checkpoint getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser<Checkpoint>
PARSER = new com.google.protobuf.AbstractParser<Checkpoint>() {
@java.lang.Override
public Checkpoint 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<Checkpoint> parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser<Checkpoint> getParserForType() {
return PARSER;
}
@java.lang.Override
public dev.sigstore.proto.rekor.v1.Checkpoint getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}