X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-dom-broker%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fdom%2Fstore%2Fimpl%2Ftree%2FModificationType.java;h=b9a26f5c00be0b6cf45775e141d22728b1d22ee2;hb=bf8f203e671b9156e2e3fe07910565e115fa1b10;hp=b16e907120ac098ee81a3f9fec4dd83469971f69;hpb=31b7a44c89d1057489338492fcf62a64147bea24;p=controller.git diff --git a/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/tree/ModificationType.java b/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/tree/ModificationType.java index b16e907120..b9a26f5c00 100644 --- a/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/tree/ModificationType.java +++ b/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/tree/ModificationType.java @@ -7,37 +7,39 @@ */ package org.opendaylight.controller.md.sal.dom.store.impl.tree; +/** + * Enumeration of all possible node modification states. These are used in + * data tree modification context to quickly assess what sort of modification + * the node is undergoing. + */ public enum ModificationType { - /** - * - * Node is unmodified - * - * + * Node is currently unmodified. */ UNMODIFIED, + /** - * - * Child of tree node was modified - * + * A child node, either direct or indirect, has been modified. This means + * that the data representation of this node has potentially changed. */ SUBTREE_MODIFIED, + /** - * Tree node was replaced with new value / subtree - * + * This node has been placed into the tree, potentially completely replacing + * pre-existing contents. */ WRITE, + /** - * - * Tree node is to be deleted. - * + * This node has been deleted along with any of its child nodes. */ DELETE, /** - * - * Tree node is to be merged with existing one. - * + * Node has been written into the tree, but instead of replacing pre-existing + * contents, it has been merged. This means that any incoming nodes which + * were present in the tree have been replaced, but their child nodes have + * been retained. */ - MERGE + MERGE, }