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 b8b220ee82fae3851e1f8bcc70a04f74b1c31560..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,35 +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();
-
-    String getLastCommittedTransactionTime();
-
-    Long getFailedTransactionsCount();
-
-}