Interface ImportResult


@Immutable public interface ImportResult
The result of a NessieImporter.importNessieRepository() operation.
  • Method Summary

    Modifier and Type
    Method
    Description
    org.projectnessie.versioned.transfer.serialize.TransferTypes.ExportMeta
    Export meta information from the export archive.
    org.projectnessie.versioned.transfer.serialize.TransferTypes.HeadsAndForks
    Heads and fork-points generated during the export.
    long
    Number of commits that have been imported.
    long
    Number of generic objects that have been imported.
    long
    Number of references that have been imported.
  • Method Details

    • exportMeta

      org.projectnessie.versioned.transfer.serialize.TransferTypes.ExportMeta exportMeta()
      Export meta information from the export archive.
    • headsAndForks

      org.projectnessie.versioned.transfer.serialize.TransferTypes.HeadsAndForks headsAndForks()
      Heads and fork-points generated during the export.

      Note: the HEADS of the named references in an export may not match the heads in TransferTypes.HeadsAndForks when commits happened while the export has been created.

    • importedCommitCount

      long importedCommitCount()
      Number of commits that have been imported.
    • importedGenericCount

      long importedGenericCount()
      Number of generic objects that have been imported.
    • importedReferenceCount

      long importedReferenceCount()
      Number of references that have been imported.