Package dev.sigstore.rekor.client
Interface RekorEntry.Checkpoint
-
- Enclosing interface:
- RekorEntry
@Immutable public static interface RekorEntry.Checkpoint
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetBase64Hash()Log root hash at the defined log size.java.lang.StringgetOrigin()Unique identity for the log.java.util.List<RekorEntry.CheckpointSignature>getSignatures()A list of signatures associated with the checkpoint.java.lang.StringgetSignedData()Signed portion of checkpoint.java.lang.LonggetSize()Size of the log for this checkpoint.
-
-
-
Method Detail
-
getSignedData
java.lang.String getSignedData()
Signed portion of checkpoint.
-
getOrigin
java.lang.String getOrigin()
Unique identity for the log.
-
getSize
java.lang.Long getSize()
Size of the log for this checkpoint.
-
getBase64Hash
java.lang.String getBase64Hash()
Log root hash at the defined log size.
-
getSignatures
java.util.List<RekorEntry.CheckpointSignature> getSignatures()
A list of signatures associated with the checkpoint.
-
-