Fix checkstyle reported by odlparent-3.0.0
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / jmx / mbeans / shard / ShardMBeanFactory.java
1 /*
2  * Copyright (c) 2014 Cisco 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.shard;
9
10 import javax.annotation.Nonnull;
11 import org.opendaylight.controller.cluster.datastore.Shard;
12
13 /**
14  * Factory for creating ShardStats mbeans.
15  *
16  * @author Basheeruddin syedbahm@cisco.com
17  */
18 public final class ShardMBeanFactory {
19
20     private ShardMBeanFactory() {
21     }
22
23     public static ShardStats getShardStatsMBean(final String shardName, final String mxBeanType,
24             @Nonnull final Shard shard) {
25         String finalMXBeanType = mxBeanType != null ? mxBeanType : "DistDataStore";
26         ShardStats shardStatsMBeanImpl = new ShardStats(shardName, finalMXBeanType, shard);
27         shardStatsMBeanImpl.registerMBean();
28         return shardStatsMBeanImpl;
29     }
30 }