Interface XmlImporter
-
- All Known Implementing Classes:
DefaultXmlImporter
@Deprecated public interface XmlImporter
Deprecated.since 7.17.0. UseBackupRestoreManager
instead.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description ImportProcessorSummary
doImport(org.hibernate.Session session, InputStreamFactory xmlStreamFactory, boolean incrementalImport, ImportContext context)
Deprecated.Perform an XML import.ImportProcessorSummary
doImport(org.hibernate.Session session, InputStreamFactory xmlStreamFactory, com.atlassian.core.util.ProgressMeter progress, boolean incrementalImport, ImportedObjectPreProcessor preProcessor)
Deprecated.
-
-
-
Method Detail
-
doImport
ImportProcessorSummary doImport(org.hibernate.Session session, InputStreamFactory xmlStreamFactory, com.atlassian.core.util.ProgressMeter progress, boolean incrementalImport, ImportedObjectPreProcessor preProcessor) throws ImportExportException
Deprecated.- Throws:
ImportExportException
-
doImport
ImportProcessorSummary doImport(org.hibernate.Session session, InputStreamFactory xmlStreamFactory, boolean incrementalImport, ImportContext context) throws ImportExportException
Deprecated.Perform an XML import.- Parameters:
session
- The current user's sessionxmlStreamFactory
- The stream from which to readincrementalImport
- Whether or not this is an incremental importcontext
- The import context holding the current state of import process- Returns:
- A summary of the imported content
- Throws:
ImportExportException
-
-