X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-binding-broker%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fconfig%2Fyang%2Fmd%2Fsal%2Fbinding%2Fimpl%2FRuntimeMappingModuleFactory.java;h=64e23e887ccdba0f7094733e489d7d58d31d2a1c;hb=2e7347fdc0eb7734ff59a4f902227a93ab6afece;hp=f104c73ba3da10516c61bfe8ff89fd5c9f988921;hpb=a9e05354c351d3d88457892e28e2f01993d53142;p=controller.git diff --git a/opendaylight/md-sal/sal-binding-broker/src/main/java/org/opendaylight/controller/config/yang/md/sal/binding/impl/RuntimeMappingModuleFactory.java b/opendaylight/md-sal/sal-binding-broker/src/main/java/org/opendaylight/controller/config/yang/md/sal/binding/impl/RuntimeMappingModuleFactory.java index f104c73ba3..64e23e887c 100644 --- a/opendaylight/md-sal/sal-binding-broker/src/main/java/org/opendaylight/controller/config/yang/md/sal/binding/impl/RuntimeMappingModuleFactory.java +++ b/opendaylight/md-sal/sal-binding-broker/src/main/java/org/opendaylight/controller/config/yang/md/sal/binding/impl/RuntimeMappingModuleFactory.java @@ -1,12 +1,10 @@ -/** -* Generated file - -* Generated from: yang module name: opendaylight-sal-binding-broker-impl yang module local name: runtime-generated-mapping -* Generated by: org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator -* Generated at: Wed Nov 20 18:20:19 CET 2013 -* -* Do not modify this file unless it is present under src/main directory -*/ +/* + * Copyright (c) 2014 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 + */ package org.opendaylight.controller.config.yang.md.sal.binding.impl; import java.util.Collections; @@ -22,36 +20,35 @@ import org.osgi.framework.BundleContext; /** * */ -public class RuntimeMappingModuleFactory extends org.opendaylight.controller.config.yang.md.sal.binding.impl.AbstractRuntimeMappingModuleFactory -{ +public class RuntimeMappingModuleFactory extends + org.opendaylight.controller.config.yang.md.sal.binding.impl.AbstractRuntimeMappingModuleFactory { - - private static RuntimeMappingModule SINGLETON = null; + private static RuntimeMappingModule SINGLETON = null; private static ModuleIdentifier IDENTIFIER = new ModuleIdentifier(NAME, "runtime-mapping-singleton"); @Override public Module createModule(String instanceName, DependencyResolver dependencyResolver, BundleContext bundleContext) { throw new UnsupportedOperationException("Only default instance supported"); } - + @Override public Module createModule(String instanceName, DependencyResolver dependencyResolver, DynamicMBeanWithInstance old, BundleContext bundleContext) throws Exception { - RuntimeMappingModule module = (RuntimeMappingModule) super.createModule(instanceName, dependencyResolver, old, bundleContext); + RuntimeMappingModule module = (RuntimeMappingModule) super.createModule(instanceName, dependencyResolver, old, + bundleContext); module.setBundleContext(bundleContext); return module; } - + @Override public Set getDefaultModules(DependencyResolverFactory dependencyResolverFactory, BundleContext bundleContext) { - if(SINGLETON == null) { + if (SINGLETON == null) { DependencyResolver dependencyResolver = dependencyResolverFactory.createDependencyResolver(IDENTIFIER); - SINGLETON = new RuntimeMappingModule(IDENTIFIER , dependencyResolver); + SINGLETON = new RuntimeMappingModule(IDENTIFIER, dependencyResolver); SINGLETON.setBundleContext(bundleContext); } - - + return Collections.singleton(SINGLETON); }