Class CompositeEditorProvider
- java.lang.Object
-
- org.apache.jackrabbit.oak.spi.commit.CompositeEditorProvider
-
- All Implemented Interfaces:
EditorProvider
public class CompositeEditorProvider extends java.lang.Object implements EditorProvider
Aggregation of a list of editor providers into a single provider.
-
-
Constructor Summary
Constructors Constructor Description CompositeEditorProvider(EditorProvider... providers)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static @NotNull EditorProvider
compose(@NotNull java.util.Collection<? extends EditorProvider> providers)
@Nullable Editor
getRootEditor(NodeState before, NodeState after, NodeBuilder builder, CommitInfo info)
Returns an editor for processing changes between the given two states.java.lang.String
toString()
-
-
-
Constructor Detail
-
CompositeEditorProvider
public CompositeEditorProvider(EditorProvider... providers)
-
-
Method Detail
-
compose
@NotNull public static @NotNull EditorProvider compose(@NotNull @NotNull java.util.Collection<? extends EditorProvider> providers)
-
getRootEditor
@Nullable public @Nullable Editor getRootEditor(NodeState before, NodeState after, NodeBuilder builder, 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 statebuilder
- 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
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-