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%2FClusteredDataChangeListener.java;fp=opendaylight%2Fmd-sal%2Fsal-binding-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fbinding%2Fapi%2FClusteredDataChangeListener.java;h=0000000000000000000000000000000000000000;hb=402dbc040ddb5dfc488320356b5a36c66d59c36e;hp=54692f480a69b6950ffa4b347bcb9811c0ae97f0;hpb=bd11e415d86b815a30e3559e199f1ad4637bd02b;p=controller.git diff --git a/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/md/sal/binding/api/ClusteredDataChangeListener.java b/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/md/sal/binding/api/ClusteredDataChangeListener.java deleted file mode 100644 index 54692f480a..0000000000 --- a/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/md/sal/binding/api/ClusteredDataChangeListener.java +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) 2015 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.controller.md.sal.binding.api; - -/** - *

- * ClusteredDataChangeListener is a marker interface to enable data change notifications on all instances in a cluster, - * where this listener is registered. - *

- * - *

Applications should implement ClusteredDataChangeListener instead of DataChangeListener, if they want to listen - * to data change notifications on any node of clustered datastore. DataChangeListener enables data change notifications - * only at leader of the datastore shard.

- * - * @deprecated Replaced by {@link ClusteredDataTreeChangeListener} - */ -@Deprecated -public interface ClusteredDataChangeListener extends DataChangeListener { -}