Class ClearReIndexJobPostImportTask
- java.lang.Object
-
- com.atlassian.confluence.internal.index.status.importexport.ClearReIndexJobPostImportTask
-
- All Implemented Interfaces:
PostImportTask
public class ClearReIndexJobPostImportTask extends Object implements PostImportTask
Delete re-index job history from Bandana after import- Since:
- 7.6.0
-
-
Constructor Summary
Constructors Constructor Description ClearReIndexJobPostImportTask(ReIndexJobPersister persister)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
execute(ImportContext context)
Perform any necessary clean-up to ensure the imported data is internally consistent.
-
-
-
Constructor Detail
-
ClearReIndexJobPostImportTask
public ClearReIndexJobPostImportTask(ReIndexJobPersister persister)
-
-
Method Detail
-
execute
public void execute(ImportContext context) throws ImportExportException
Description copied from interface:PostImportTask
Perform any necessary clean-up to ensure the imported data is internally consistent.- Specified by:
execute
in interfacePostImportTask
- Parameters:
context
- the context of the import which has just finished- Throws:
ImportExportException
- if there was a problem with this task that should mean aborting the import entirely. Most implementations should not throw any exceptions, but rather log an error and allow the import to continue.
-
-