X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=applications%2Fforwardingrules-sync%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fopenflowplugin%2Fapplications%2Ffrsync%2FNodeListener.java;h=76199a9af179c3bac105535f9b776ec3f24eed7d;hb=cfe3a97837951ebbedb337dc988027f10c49f714;hp=f3bc24928f31b93f4188d706568c66ae0c9883fd;hpb=b856de553be44436a08cf307562c3c7d6fb07f54;p=openflowplugin.git diff --git a/applications/forwardingrules-sync/src/main/java/org/opendaylight/openflowplugin/applications/frsync/NodeListener.java b/applications/forwardingrules-sync/src/main/java/org/opendaylight/openflowplugin/applications/frsync/NodeListener.java index f3bc24928f..76199a9af1 100644 --- a/applications/forwardingrules-sync/src/main/java/org/opendaylight/openflowplugin/applications/frsync/NodeListener.java +++ b/applications/forwardingrules-sync/src/main/java/org/opendaylight/openflowplugin/applications/frsync/NodeListener.java @@ -1,19 +1,18 @@ -/** +/* * Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ - package org.opendaylight.openflowplugin.applications.frsync; -import java.util.EventListener; -import org.opendaylight.controller.md.sal.binding.api.DataTreeChangeListener; +import org.opendaylight.mdsal.binding.api.ClusteredDataTreeChangeListener; import org.opendaylight.yangtools.yang.binding.DataObject; /** * Unifying listener for data and event changes on node. */ -public interface NodeListener extends EventListener, DataTreeChangeListener { +public interface NodeListener extends ClusteredDataTreeChangeListener { + }