Class CompositeEditorProvider
java.lang.Object
org.apache.jackrabbit.oak.spi.commit.CompositeEditorProvider
- All Implemented Interfaces:
EditorProvider
Aggregation of a list of editor providers into a single provider.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic @NotNull EditorProvidercompose(@NotNull Collection<? extends EditorProvider> providers) @Nullable EditorgetRootEditor(NodeState before, NodeState after, NodeBuilder builder, CommitInfo info) Returns an editor for processing changes between the given two states.toString()
-
Constructor Details
-
CompositeEditorProvider
-
-
Method Details
-
compose
@NotNull public static @NotNull EditorProvider compose(@NotNull @NotNull Collection<? extends EditorProvider> providers) -
getRootEditor
@Nullable public @Nullable Editor getRootEditor(NodeState before, NodeState after, NodeBuilder builder, CommitInfo info) throws org.apache.jackrabbit.oak.api.CommitFailedException Description copied from interface:EditorProviderReturns an editor for processing changes between the given two states. Returnsnullif 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
Editorinstance returned by this method. Instead the implementation can use the opportunity for other preparatory work.- Specified by:
getRootEditorin 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:
org.apache.jackrabbit.oak.api.CommitFailedException- if processing failed
-
toString
-