Class AttachmentContentStatusPreProcessor
java.lang.Object
com.atlassian.confluence.importexport.impl.AttachmentContentStatusPreProcessor
- All Implemented Interfaces:
ImportedObjectPreProcessor
public class AttachmentContentStatusPreProcessor
extends Object
implements ImportedObjectPreProcessor
Exports of upgraded attachments from Confluence 5.7 and lower may have a blank content status field for Attachment
objects. This fixes it.
- Since:
- 5.8
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanhandles(ImportedObject object) process(ImportedObject object) Takes an ImportedObject and returns a new, processed ImportedObject, or null if the ImportedObject should be skipped.
-
Constructor Details
-
AttachmentContentStatusPreProcessor
public AttachmentContentStatusPreProcessor()
-
-
Method Details
-
handles
- Specified by:
handlesin interfaceImportedObjectPreProcessor- Parameters:
object- The object to be processed- Returns:
trueif this preprocessor should be applied to the object, otherwisefalse.
-
process
Description copied from interface:ImportedObjectPreProcessorTakes an ImportedObject and returns a new, processed ImportedObject, or null if the ImportedObject should be skipped. This method will not execute unlessImportedObjectPreProcessor.handles(ImportedObject)returns true- Specified by:
processin interfaceImportedObjectPreProcessor- Parameters:
object- The object that needs to be processed- Returns:
- An ImportedObject with the relevant changes, or null if the object should not be imported.
-