public interface MoveValidator extends Validator
MoveDetector| Modifier and Type | Method and Description |
|---|---|
MoveValidator |
childNodeAdded(String name,
NodeState after)
Validate an added node
|
MoveValidator |
childNodeChanged(String name,
NodeState before,
NodeState after)
Validate a changed node
|
MoveValidator |
childNodeDeleted(String name,
NodeState before)
Validate a deleted node
|
void |
move(String name,
String sourcePath,
NodeState moved)
Called when a moved node has been detected.
|
propertyAdded, propertyChanged, propertyDeletedvoid move(String name, String sourcePath, NodeState moved) throws org.apache.jackrabbit.oak.api.CommitFailedException
sourcePath - path of the node before the movename - name of the node after the movemoved - the node state moved hereorg.apache.jackrabbit.oak.api.CommitFailedException - if validation fails.
remove@CheckForNull MoveValidator childNodeAdded(String name, NodeState after) throws org.apache.jackrabbit.oak.api.CommitFailedException
ValidatorchildNodeAdded in interface EditorchildNodeAdded in interface Validatorname - the name of the added nodeafter - the added nodeValidator for after or null if validation
should not decent into the subtree rooted at after.org.apache.jackrabbit.oak.api.CommitFailedException - if validation fails.@CheckForNull MoveValidator childNodeChanged(String name, NodeState before, NodeState after) throws org.apache.jackrabbit.oak.api.CommitFailedException
ValidatorchildNodeChanged in interface EditorchildNodeChanged in interface Validatorname - the name of the changed nodebefore - the original nodeafter - the changed nodeValidator for after or null if validation
should not decent into the subtree rooted at after.org.apache.jackrabbit.oak.api.CommitFailedException - if validation fails.@CheckForNull MoveValidator childNodeDeleted(String name, NodeState before) throws org.apache.jackrabbit.oak.api.CommitFailedException
ValidatorchildNodeDeleted in interface EditorchildNodeDeleted in interface Validatorname - The name of the deleted node.before - the original nodeValidator for the removed subtree or
null if validation should not decent into the subtreeorg.apache.jackrabbit.oak.api.CommitFailedException - if validation fails.Copyright © 2012–2018 The Apache Software Foundation. All rights reserved.