Class ContentPropertyFilterPreProcessor
java.lang.Object
com.atlassian.confluence.importexport.impl.ContentPropertyFilterPreProcessor
- All Implemented Interfaces:
ImportedObjectPreProcessor
@Deprecated(since="8.3.0",
forRemoval=true)
public class ContentPropertyFilterPreProcessor
extends Object
implements ImportedObjectPreProcessor
Deprecated, for removal: This API element is subject to removal in a future version.
since 8.3.0
Export from 6.x may include content properties such as synchrony related ones,
which need to be filtered out on import
- Since:
- 6.0
-
Constructor Summary
ConstructorsConstructorDescriptionContentPropertyFilterPreProcessor(Set<String> valuesToSkip) Deprecated, for removal: This API element is subject to removal in a future version. -
Method Summary
Modifier and TypeMethodDescriptionbooleanhandles(ImportedObject object) Deprecated, for removal: This API element is subject to removal in a future version.process(ImportedObject object) Deprecated, for removal: This API element is subject to removal in a future version.Takes an ImportedObject and returns a new, processed ImportedObject, or null if the ImportedObject should be skipped.
-
Constructor Details
-
ContentPropertyFilterPreProcessor
Deprecated, for removal: This API element is subject to removal in a future version.
-
-
Method Details
-
handles
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
handlesin interfaceImportedObjectPreProcessor- Parameters:
object- The object to be processed- Returns:
trueif this preprocessor should be applied to the object, otherwisefalse.
-
process
Deprecated, for removal: This API element is subject to removal in a future version.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.
-