Class ChainedImportedObjectPreProcessor
java.lang.Object
com.atlassian.confluence.importexport.ChainedImportedObjectPreProcessor
- All Implemented Interfaces:
ImportedObjectPreProcessor
@Deprecated
public class ChainedImportedObjectPreProcessor
extends Object
implements ImportedObjectPreProcessor
Deprecated.
since 7.17.0.
A container that runs an ImportedObject through multiple ImportedObjectPreProcessors in sequence.
-
Constructor Summary
ConstructorsConstructorDescriptionChainedImportedObjectPreProcessor
(List<ImportedObjectPreProcessor> processorList) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.boolean
handles
(ImportedObject object) Deprecated.process
(ImportedObject object) Deprecated.Process the object with each of the contained preprocessors
-
Constructor Details
-
ChainedImportedObjectPreProcessor
Deprecated.
-
-
Method Details
-
emptyList
Deprecated. -
handles
Deprecated.- Specified by:
handles
in interfaceImportedObjectPreProcessor
- Parameters:
object
- The object to be processed- Returns:
true
if any of the contained preprocessors should be applied to the object, otherwisefalse
.
-
process
Deprecated.Process the object with each of the contained preprocessors- Specified by:
process
in interfaceImportedObjectPreProcessor
- Parameters:
object
- The object that needs to be processed- Returns:
- A new processed object, or null if any of the preprocessors returned null
-