Remove deprecated MD-SAL APIs
[controller.git] / opendaylight / md-sal / samples / clustering-test-app / provider / src / main / java / org / opendaylight / controller / clustering / it / provider / CarDataTreeChangeListener.java
index 8d9eb77ddc812f6a5538a2dbd7fc99cb96b7dbd7..6acf6744a0a57d0141de5d2f30b17acb075874ce 100644 (file)
@@ -7,10 +7,10 @@
  */
 package org.opendaylight.controller.clustering.it.provider;
 
-import org.opendaylight.controller.md.sal.binding.api.DataObjectModification;
-import org.opendaylight.controller.md.sal.binding.api.DataObjectModification.ModificationType;
-import org.opendaylight.controller.md.sal.binding.api.DataTreeChangeListener;
-import org.opendaylight.controller.md.sal.binding.api.DataTreeModification;
+import org.opendaylight.mdsal.binding.api.DataObjectModification;
+import org.opendaylight.mdsal.binding.api.DataObjectModification.ModificationType;
+import org.opendaylight.mdsal.binding.api.DataTreeChangeListener;
+import org.opendaylight.mdsal.binding.api.DataTreeModification;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.config.sal.clustering.it.car.rev140818.Cars;
 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 import org.slf4j.Logger;
@@ -29,22 +29,20 @@ public class CarDataTreeChangeListener implements DataTreeChangeListener<Cars> {
     public void onDataTreeChanged(final java.util.Collection<DataTreeModification<Cars>> changes) {
         if (LOG.isTraceEnabled()) {
             for (DataTreeModification<Cars> change : changes) {
-                ouputChanges(change);
+                outputChanges(change);
             }
         }
     }
 
-    private static void ouputChanges(final DataTreeModification<Cars> change) {
+    private static void outputChanges(final DataTreeModification<Cars> change) {
         final DataObjectModification<Cars> rootNode = change.getRootNode();
         final ModificationType modificationType = rootNode.getModificationType();
         final InstanceIdentifier<Cars> rootIdentifier = change.getRootPath().getRootIdentifier();
         switch (modificationType) {
             case WRITE:
             case SUBTREE_MODIFIED: {
-                final Cars dataBefore = rootNode.getDataBefore();
-                final Cars dataAfter = rootNode.getDataAfter();
                 LOG.trace("onDataTreeChanged - Cars config with path {} was added or changed from {} to {}",
-                        rootIdentifier, dataBefore, dataAfter);
+                        rootIdentifier, rootNode.getDataBefore(), rootNode.getDataAfter());
                 break;
             }
             case DELETE: {