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%2Fdatastore%2Fjmx%2Fmbeans%2FDatastoreConfigurationMXBean.java;h=3abdafd983bfa05b0929f5c11bb6ac9d44eb82e5;hb=HEAD;hp=6b81792a57ca86de622df194c6c090bdd98f189b;hpb=412db94945c5db5d2da918f5e23bd3abcecc4d10;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/jmx/mbeans/DatastoreConfigurationMXBean.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/jmx/mbeans/DatastoreConfigurationMXBean.java deleted file mode 100644 index 6b81792a57..0000000000 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/jmx/mbeans/DatastoreConfigurationMXBean.java +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Copyright (c) 2015 Brocade Communications 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.cluster.datastore.jmx.mbeans; - - -/** - * MXBean interface for data store configuration. - * - * @author Thomas Pantelis - */ -public interface DatastoreConfigurationMXBean { - long getShardTransactionIdleTimeoutInSeconds(); - - long getOperationTimeoutInSeconds(); - - long getShardHeartbeatIntervalInMillis(); - - int getShardJournalRecoveryLogBatchSize(); - - long getShardIsolatedLeaderCheckIntervalInMillis(); - - long getShardElectionTimeoutFactor(); - - int getShardSnapshotDataThresholdPercentage(); - - long getShardSnapshotBatchCount(); - - long getShardTransactionCommitTimeoutInSeconds(); - - int getShardTransactionCommitQueueCapacity(); - - long getShardInitializationTimeoutInSeconds(); - - long getShardLeaderElectionTimeoutInSeconds(); - - boolean isPersistent(); - - long getTransactionCreationInitialRateLimit(); - - int getMaxShardDataChangeExecutorPoolSize(); - - int getMaxShardDataChangeExecutorQueueSize(); - - int getMaxShardDataChangeListenerQueueSize(); - - int getMaxShardDataStoreExecutorQueueSize(); -}