BUG 1712 - Distributed DataStore does not work properly with Transaction Chains
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / Configuration.java
index 34239070a3dfafe15c8ba7e71c630eaf56136e3b..b2646060539332fc45d58776aaf0a7efe2b0d3ff 100644 (file)
@@ -13,6 +13,7 @@ import org.opendaylight.controller.cluster.datastore.shardstrategy.ShardStrategy
 
 import java.util.List;
 import java.util.Map;
+import java.util.Set;
 
 public interface Configuration {
 
@@ -52,4 +53,10 @@ public interface Configuration {
      * @return
      */
     List<String> getMembersFromShardName(String shardName);
+
+    /**
+     *
+     * @return
+     */
+    Set<String> getAllShardNames();
 }