Class VersionableEditor.Provider
- java.lang.Object
-
- org.apache.jackrabbit.oak.plugins.migration.version.VersionableEditor.Provider
-
- All Implemented Interfaces:
EditorProvider
- Enclosing class:
- VersionableEditor
public static class VersionableEditor.Provider extends Object implements EditorProvider
-
-
Constructor Summary
Constructors Constructor Description Provider(NodeState sourceRoot, String workspaceName, VersionCopyConfiguration config)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Editor
getRootEditor(NodeState before, NodeState after, NodeBuilder rootBuilder, CommitInfo info)
Returns an editor for processing changes between the given two states.
-
-
-
Constructor Detail
-
Provider
public Provider(NodeState sourceRoot, String workspaceName, VersionCopyConfiguration config)
-
-
Method Detail
-
getRootEditor
public Editor getRootEditor(NodeState before, NodeState after, NodeBuilder rootBuilder, CommitInfo info) throws CommitFailedException
Description copied from interface:EditorProvider
Returns an editor for processing changes between the given two states. Returnsnull
if the changes don't require processing.An implementation of this method should generally not compare the given before and after states, as the caller is expected to compare the states and invoke the respective callback methods on the
Editor
instance returned by this method. Instead the implementation can use the opportunity for other preparatory work.- Specified by:
getRootEditor
in interfaceEditorProvider
- Parameters:
before
- original root stateafter
- modified root staterootBuilder
- node builder based on the after stateinfo
- metadata associated with this commit- Returns:
- editor for processing the changes, or
null
- Throws:
CommitFailedException
- if processing failed
-
-