Class ItemSaveValidatorProvider
java.lang.Object
org.apache.jackrabbit.oak.spi.commit.ValidatorProvider
org.apache.jackrabbit.oak.plugins.itemsave.ItemSaveValidatorProvider
- All Implemented Interfaces:
EditorProvider
This validator checks that all changes are contained within the subtree
rooted at a given path.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected @Nullable Validator
getRootValidator
(NodeState before, NodeState after, CommitInfo info) Returns a validator for checking the changes between the given two root states.Methods inherited from class org.apache.jackrabbit.oak.spi.commit.ValidatorProvider
getRootEditor
-
Constructor Details
-
ItemSaveValidatorProvider
public ItemSaveValidatorProvider()
-
-
Method Details
-
getRootValidator
@Nullable protected @Nullable Validator getRootValidator(NodeState before, NodeState after, CommitInfo info) Description copied from class:ValidatorProvider
Returns a validator for checking the changes between the given two root states.- Specified by:
getRootValidator
in classValidatorProvider
- Parameters:
before
- original root stateafter
- modified root stateinfo
- metadata about this commit- Returns:
- validator for checking the modifications,
or
null
if this validator is not needed for this commit
-