fix FollowerInfo @ConstructorProperties for valid ShardStatsMXBean
[controller.git] / opendaylight / md-sal / sal-dom-broker-config / src / main / java / org / opendaylight / controller / config / yang / md / sal / dom / impl / DomBrokerImplModuleFactory.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.config.yang.md.sal.dom.impl;
9
10 import org.opendaylight.controller.config.api.DependencyResolver;
11 import org.opendaylight.controller.config.api.DynamicMBeanWithInstance;
12 import org.opendaylight.controller.config.spi.Module;
13 import org.osgi.framework.BundleContext;
14
15 /**
16  * Deprecated.
17  *
18  * @deprecated Replaced by blueprint wiring
19  */
20 @Deprecated
21 public class DomBrokerImplModuleFactory extends AbstractDomBrokerImplModuleFactory {
22
23     @Override
24     public Module createModule(String instanceName, DependencyResolver dependencyResolver,
25             BundleContext bundleContext) {
26         DomBrokerImplModule module = (DomBrokerImplModule)super.createModule(instanceName, dependencyResolver,
27                 bundleContext);
28         module.setBundleContext(bundleContext);
29         return module;
30     }
31
32     @Override
33     public Module createModule(String instanceName, DependencyResolver dependencyResolver, DynamicMBeanWithInstance old,
34             BundleContext bundleContext) throws Exception {
35         DomBrokerImplModule module = (DomBrokerImplModule)super.createModule(instanceName, dependencyResolver,
36                 old, bundleContext);
37         module.setBundleContext(bundleContext);
38         return module;
39     }
40 }