public class SubtreeExcludingValidator extends DefaultValidator
SubtreeValidatorINSTANCE| Modifier | Constructor and Description |
|---|---|
protected |
SubtreeExcludingValidator(Validator validator,
List<String> path) |
| Modifier and Type | Method and Description |
|---|---|
Validator |
childNodeAdded(String name,
NodeState after)
Validate an added node
|
Validator |
childNodeChanged(String name,
NodeState before,
NodeState after)
Validate a changed node
|
Validator |
childNodeDeleted(String name,
NodeState before)
Validate a deleted node
|
protected SubtreeExcludingValidator |
createValidator(Validator validator,
List<String> path) |
void |
propertyAdded(org.apache.jackrabbit.oak.api.PropertyState after)
Validate an added property
|
void |
propertyChanged(org.apache.jackrabbit.oak.api.PropertyState before,
org.apache.jackrabbit.oak.api.PropertyState after)
Validate a changed property
|
void |
propertyDeleted(org.apache.jackrabbit.oak.api.PropertyState before)
Validate a deleted property
|
enter, leavepublic void propertyAdded(org.apache.jackrabbit.oak.api.PropertyState after) throws org.apache.jackrabbit.oak.api.CommitFailedException
ValidatorpropertyAdded in interface EditorpropertyAdded in interface ValidatorpropertyAdded in class DefaultValidatorafter - the added propertyorg.apache.jackrabbit.oak.api.CommitFailedException - if validation fails.public void propertyChanged(org.apache.jackrabbit.oak.api.PropertyState before, org.apache.jackrabbit.oak.api.PropertyState after) throws org.apache.jackrabbit.oak.api.CommitFailedException
ValidatorpropertyChanged in interface EditorpropertyChanged in interface ValidatorpropertyChanged in class DefaultValidatorbefore - the original propertyafter - the changed propertyorg.apache.jackrabbit.oak.api.CommitFailedException - if validation fails.public void propertyDeleted(org.apache.jackrabbit.oak.api.PropertyState before) throws org.apache.jackrabbit.oak.api.CommitFailedException
ValidatorpropertyDeleted in interface EditorpropertyDeleted in interface ValidatorpropertyDeleted in class DefaultValidatorbefore - the original propertyorg.apache.jackrabbit.oak.api.CommitFailedException - if validation fails.public Validator childNodeAdded(String name, NodeState after) throws org.apache.jackrabbit.oak.api.CommitFailedException
ValidatorchildNodeAdded in interface EditorchildNodeAdded in interface ValidatorchildNodeAdded in class DefaultValidatorname - 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.public Validator childNodeChanged(String name, NodeState before, NodeState after) throws org.apache.jackrabbit.oak.api.CommitFailedException
ValidatorchildNodeChanged in interface EditorchildNodeChanged in interface ValidatorchildNodeChanged in class DefaultValidatorname - 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.public Validator childNodeDeleted(String name, NodeState before) throws org.apache.jackrabbit.oak.api.CommitFailedException
ValidatorchildNodeDeleted in interface EditorchildNodeDeleted in interface ValidatorchildNodeDeleted in class DefaultValidatorname - 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.protected SubtreeExcludingValidator createValidator(Validator validator, List<String> path)
Copyright © 2012–2018 The Apache Software Foundation. All rights reserved.