Merge "Fixed test which tested incorrect string formating"
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / jmx / mbeans / shard / ShardStatsMBean.java
index d5530653fd400d69850af60bf5b6923f35dbc79f..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,30 +0,0 @@
-package org.opendaylight.controller.cluster.datastore.jmx.mbeans.shard;
-
-/**
- * @author: syedbahm
- */
-public interface ShardStatsMBean {
-    String getShardName();
-
-    Long getCommittedTransactionsCount();
-
-    String getLeader();
-
-    String getRaftState();
-
-    Long getReadOnlyTransactionCount();
-
-    Long getWriteOnlyTransactionCount();
-
-    Long getReadWriteTransactionCount();
-
-    Long getLastLogIndex();
-
-    Long getLastLogTerm();
-
-    Long getCurrentTerm();
-
-    Long getCommitIndex();
-
-    Long getLastApplied();
-}