Class DefaultNodeStateDiff
java.lang.Object
org.apache.jackrabbit.oak.spi.state.DefaultNodeStateDiff
- All Implemented Interfaces:
NodeStateDiff
Node state diff handler that by default does nothing. Useful as a base
class for more complicated diff handlers that can safely ignore one or
more types of changes.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanchildNodeAdded(String name, NodeState after) Called for all added child nodes.booleanchildNodeChanged(String name, NodeState before, NodeState after) Called for all child nodes that may contain changes between the before and after states.booleanchildNodeDeleted(String name, NodeState before) Called for all deleted child nodes.booleanpropertyAdded(org.apache.jackrabbit.oak.api.PropertyState after) Called for all added properties.booleanpropertyChanged(org.apache.jackrabbit.oak.api.PropertyState before, org.apache.jackrabbit.oak.api.PropertyState after) Called for all changed properties.booleanpropertyDeleted(org.apache.jackrabbit.oak.api.PropertyState before) Called for all deleted properties.
-
Constructor Details
-
DefaultNodeStateDiff
public DefaultNodeStateDiff()
-
-
Method Details
-
propertyAdded
public boolean propertyAdded(org.apache.jackrabbit.oak.api.PropertyState after) Description copied from interface:NodeStateDiffCalled for all added properties.- Specified by:
propertyAddedin interfaceNodeStateDiff- Parameters:
after- property state after the change- Returns:
trueto continue the comparison,falseto abort. Abort will stop comparing completely, that means sibling nodes and sibling nodes of all parents are not further compared.
-
propertyChanged
public boolean propertyChanged(org.apache.jackrabbit.oak.api.PropertyState before, org.apache.jackrabbit.oak.api.PropertyState after) Description copied from interface:NodeStateDiffCalled for all changed properties. The names of the given two property states are guaranteed to be the same.- Specified by:
propertyChangedin interfaceNodeStateDiff- Parameters:
before- property state before the changeafter- property state after the change- Returns:
trueto continue the comparison,falseto abort. Abort will stop comparing completely, that means sibling nodes and sibling nodes of all parents are not further compared.
-
propertyDeleted
public boolean propertyDeleted(org.apache.jackrabbit.oak.api.PropertyState before) Description copied from interface:NodeStateDiffCalled for all deleted properties.- Specified by:
propertyDeletedin interfaceNodeStateDiff- Parameters:
before- property state before the change- Returns:
trueto continue the comparison,falseto abort. Abort will stop comparing completely, that means sibling nodes and sibling nodes of all parents are not further compared.
-
childNodeAdded
Description copied from interface:NodeStateDiffCalled for all added child nodes.- Specified by:
childNodeAddedin interfaceNodeStateDiff- Parameters:
name- name of the added child nodeafter- child node state after the change- Returns:
trueto continue the comparison,falseto abort. Abort will stop comparing completely, that means sibling nodes and sibling nodes of all parents are not further compared.
-
childNodeChanged
Description copied from interface:NodeStateDiffCalled for all child nodes that may contain changes between the before and after states. The comparison implementation is expected to make an effort to avoid calling this method on child nodes under which nothing has changed.- Specified by:
childNodeChangedin interfaceNodeStateDiff- Parameters:
name- name of the changed child nodebefore- child node state before the changeafter- child node state after the change- Returns:
trueto continue the comparison,falseto abort. Abort will stop comparing completely, that means sibling nodes and sibling nodes of all parents are not further compared.
-
childNodeDeleted
Description copied from interface:NodeStateDiffCalled for all deleted child nodes.- Specified by:
childNodeDeletedin interfaceNodeStateDiff- Parameters:
name- name of the deleted child nodebefore- child node state before the change- Returns:
trueto continue the comparison,falseto abort. Abort will stop comparing completely, that means sibling nodes and sibling nodes of all parents are not further compared.
-