Class WhiteboardEditorProvider

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      @Nullable Editor getRootEditor​(NodeState before, NodeState after, NodeBuilder builder, CommitInfo info)
      Returns an editor for processing changes between the given two states.
      • Methods inherited from class org.apache.jackrabbit.oak.spi.whiteboard.AbstractServiceTracker

        getServices, start, stop
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • WhiteboardEditorProvider

        public WhiteboardEditorProvider()
    • Method Detail

      • 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: EditorProvider
        Returns an editor for processing changes between the given two states. Returns null 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 interface EditorProvider
        Parameters:
        before - original root state
        after - modified root state
        builder - node builder based on the after state
        info - metadata associated with this commit
        Returns:
        editor for processing the changes, or null
        Throws:
        org.apache.jackrabbit.oak.api.CommitFailedException - if processing failed