Use Config Admin to overlay datastore properties
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / jmx / mbeans / DatastoreConfigurationMXBean.java
1 /*
2  * Copyright (c) 2015 Brocade Communications Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.cluster.datastore.jmx.mbeans;
9
10
11 /**
12  * MXBean interface for data store configuration.
13  *
14  * @author Thomas Pantelis
15  */
16 public interface DatastoreConfigurationMXBean {
17     long getShardTransactionIdleTimeoutInSeconds();
18
19     long getOperationTimeoutInSeconds();
20
21     long getShardHeartbeatIntervalInMillis();
22
23     int getShardJournalRecoveryLogBatchSize();
24
25     long getShardIsolatedLeaderCheckIntervalInMillis();
26
27     long getShardElectionTimeoutFactor();
28
29     int getShardSnapshotDataThresholdPercentage();
30
31     long getShardSnapshotBatchCount();
32
33     long getShardTransactionCommitTimeoutInSeconds();
34
35     int getShardTransactionCommitQueueCapacity();
36
37     long getShardInitializationTimeoutInSeconds();
38
39     long getShardLeaderElectionTimeoutInSeconds();
40
41     boolean isPersistent();
42
43     long getTransactionCreationInitialRateLimit();
44
45     int getMaxShardDataChangeExecutorPoolSize();
46
47     int getMaxShardDataChangeExecutorQueueSize();
48
49     int getMaxShardDataChangeListenerQueueSize();
50
51     int getMaxShardDataStoreExecutorQueueSize();
52 }