Interface CommitParams

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      org.projectnessie.nessie.relocated.protobuf.ByteString getCommitMetaSerialized()
      Serialized commit-metadata.
      java.util.Set<org.projectnessie.model.ContentKey> getDeletes()
      List of "unchanged" keys, from Delete commit operations.
      java.util.Map<ContentId,​java.util.Optional<org.projectnessie.nessie.relocated.protobuf.ByteString>> getExpectedStates()
      Mapping of content-ids to expected global content-state (think: Iceberg table-metadata), coming from the "expected-state" property of a PutGlobal commit operation.
      java.util.List<KeyWithBytes> getPuts()
      List of all Put operations, with their keys, content-types and serialized Content.
      java.util.List<org.projectnessie.model.ContentKey> getUnchanged()
      List of "unchanged" keys, from Unchanged commit operations.
    • Method Detail

      • getExpectedStates

        java.util.Map<ContentId,​java.util.Optional<org.projectnessie.nessie.relocated.protobuf.ByteString>> getExpectedStates()
        Mapping of content-ids to expected global content-state (think: Iceberg table-metadata), coming from the "expected-state" property of a PutGlobal commit operation.
      • getPuts

        java.util.List<KeyWithBytes> getPuts()
        List of all Put operations, with their keys, content-types and serialized Content.
      • getUnchanged

        java.util.List<org.projectnessie.model.ContentKey> getUnchanged()
        List of "unchanged" keys, from Unchanged commit operations.
      • getDeletes

        java.util.Set<org.projectnessie.model.ContentKey> getDeletes()
        List of "unchanged" keys, from Delete commit operations.
      • getCommitMetaSerialized

        org.projectnessie.nessie.relocated.protobuf.ByteString getCommitMetaSerialized()
        Serialized commit-metadata.