X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-dom-broker%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fdom%2Fstore%2Fimpl%2Ftree%2FDataTreeSnapshot.java;h=a94acc565830dbf9f205d10010d96e2d1647beee;hp=4f3512807f001542ec5d445af26ac3cac2c942fd;hb=b6e3e11ddcea90a2ae7f93c179625941e8e22ccd;hpb=8d160966fa8752235d01bb8dc57c11391b86f187 diff --git a/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/tree/DataTreeSnapshot.java b/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/tree/DataTreeSnapshot.java index 4f3512807f..a94acc5658 100644 --- a/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/tree/DataTreeSnapshot.java +++ b/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/tree/DataTreeSnapshot.java @@ -18,12 +18,12 @@ import com.google.common.base.Optional; * visible through the snapshot. */ public interface DataTreeSnapshot { - /** - * Read a particular node from the snapshot. - * - * @param path Path of the node - * @return Optional result encapsulating the presence and value of the node - */ + /** + * Read a particular node from the snapshot. + * + * @param path Path of the node + * @return Optional result encapsulating the presence and value of the node + */ Optional> readNode(InstanceIdentifier path); /** @@ -33,5 +33,5 @@ public interface DataTreeSnapshot { * @param strategy data modification strategy * @return A new data tree modification */ - DataTreeModification newModification(ModificationApplyOperation applyOper); + DataTreeModification newModification(); }