X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fsharding%2FDistributedShardChangePublisher.java;h=bcb73dbce2f50d418b3388aa5d2c37e145810c20;hb=refs%2Fchanges%2F70%2F91770%2F4;hp=8981988196ce5786edf0e40e2c74defc590235a2;hpb=b9711f17a53a4fad48197df6c39b58e4faadc862;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/sharding/DistributedShardChangePublisher.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/sharding/DistributedShardChangePublisher.java index 8981988196..bcb73dbce2 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/sharding/DistributedShardChangePublisher.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/sharding/DistributedShardChangePublisher.java @@ -21,7 +21,7 @@ import java.util.concurrent.ConcurrentHashMap; import java.util.stream.Collectors; import org.checkerframework.checker.lock.qual.GuardedBy; import org.opendaylight.controller.cluster.databroker.actors.dds.DataStoreClient; -import org.opendaylight.controller.cluster.datastore.AbstractDataStore; +import org.opendaylight.controller.cluster.datastore.DistributedDataStoreInterface; import org.opendaylight.mdsal.dom.api.DOMDataTreeChangeListener; import org.opendaylight.mdsal.dom.api.DOMDataTreeIdentifier; import org.opendaylight.mdsal.dom.spi.AbstractDOMDataTreeChangeListenerRegistration; @@ -51,7 +51,7 @@ public class DistributedShardChangePublisher private static final Logger LOG = LoggerFactory.getLogger(DistributedShardChangePublisher.class); - private final AbstractDataStore distributedDataStore; + private final DistributedDataStoreInterface distributedDataStore; private final YangInstanceIdentifier shardPath; private final Map childShards; @@ -60,7 +60,7 @@ public class DistributedShardChangePublisher private final DataTree dataTree; public DistributedShardChangePublisher(final DataStoreClient client, - final AbstractDataStore distributedDataStore, + final DistributedDataStoreInterface distributedDataStore, final DOMDataTreeIdentifier prefix, final Map childShards) { this.distributedDataStore = distributedDataStore;