Interface ImportResult
@Immutable
public interface ImportResult
The result of a
NessieImporter.importNessieRepository() operation.-
Method Summary
Modifier and TypeMethodDescriptionorg.projectnessie.versioned.transfer.serialize.TransferTypes.ExportMetaExport meta information from the export archive.org.projectnessie.versioned.transfer.serialize.TransferTypes.HeadsAndForksHeads and fork-points generated during the export.longNumber of commits that have been imported.longNumber of generic objects that have been imported.longNumber 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.HeadsAndForkswhen 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.
-