X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-binding-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fbinding%2Fapi%2FDataTreeModification.java;h=8163baceac95b449fdc57c50ad81c2d7b2322ddb;hb=a54ec60368110d22794602343c934902f6833c65;hp=aac51a6a4cfa349d4c5bf602c71c12a169dd8395;hpb=686d381ea589ebf33bcfb0bbc7048ffe242749c4;p=controller.git diff --git a/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/md/sal/binding/api/DataTreeModification.java b/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/md/sal/binding/api/DataTreeModification.java index aac51a6a4c..8163baceac 100644 --- a/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/md/sal/binding/api/DataTreeModification.java +++ b/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/md/sal/binding/api/DataTreeModification.java @@ -17,7 +17,7 @@ import org.opendaylight.yangtools.yang.binding.DataObject; * @author Tony Tkacik <ttkacik@cisco.com> * */ -public interface DataTreeModification { +public interface DataTreeModification { /** * Get the modification root path. This is the path of the root node @@ -25,13 +25,13 @@ public interface DataTreeModification { * * @return absolute path of the root node */ - @Nonnull DataTreeIdentifier getRootPath(); + @Nonnull DataTreeIdentifier getRootPath(); /** * Get the modification root node. * * @return modification root node */ - @Nonnull DataObjectModification getRootNode(); + @Nonnull DataObjectModification getRootNode(); }