/* * Copyright (c) 2013 Cisco 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 */ /** * Generated file * Generated from: yang module name: bgp-rib-impl yang module local name: bgp-dispatcher-impl * Generated by: org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator * Generated at: Wed Nov 06 13:02:32 CET 2013 * * Do not modify this file unless it is present under src/main directory */ package org.opendaylight.controller.config.yang.bgp.rib.impl; import org.opendaylight.controller.config.api.DependencyResolver; import org.osgi.framework.BundleContext; /** * @deprecated Replaced by blueprint wiring but remains for backwards compatibility until downstream users * of the provided config system service are converted to blueprint. */ @Deprecated public class BGPDispatcherImplModuleFactory extends AbstractBGPDispatcherImplModuleFactory { @Override public BGPDispatcherImplModule instantiateModule(String instanceName, DependencyResolver dependencyResolver, BGPDispatcherImplModule oldModule, AutoCloseable oldInstance, BundleContext bundleContext) { BGPDispatcherImplModule module = super.instantiateModule(instanceName, dependencyResolver, oldModule, oldInstance, bundleContext); module.setBundleContext(bundleContext); return module; } @Override public BGPDispatcherImplModule instantiateModule(String instanceName, DependencyResolver dependencyResolver, BundleContext bundleContext) { BGPDispatcherImplModule module = super.instantiateModule(instanceName, dependencyResolver, bundleContext); module.setBundleContext(bundleContext); return module; } }