Fix FindBugs warnings in sal-distributed-datastore and enable enforcement
[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 class ShardMBeanFactory {
19
20     public static ShardStats getShardStatsMBean(final String shardName, final String mxBeanType,
21             @Nonnull final Shard shard) {
22         String finalMXBeanType = mxBeanType != null ? mxBeanType : "DistDataStore";
23         ShardStats shardStatsMBeanImpl = new ShardStats(shardName, finalMXBeanType, shard);
24         shardStatsMBeanImpl.registerMBean();
25         return shardStatsMBeanImpl;
26     }
27 }