X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fconfig%2Fconfig-manager%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fconfig%2Fmanager%2Ftestingservices%2Fparallelapsp%2FTestingParallelAPSPModuleFactory.java;h=4ce5dc91dd687e77d1df5d1956f8467a69746214;hp=89b70e3e7ab4fca00351a71dbcd5f75efcd87041;hb=f43b01b81319959b1907e3e04537f5169e7f33d8;hpb=2294805f83434db1d248e629767da6a563ce595f diff --git a/opendaylight/config/config-manager/src/test/java/org/opendaylight/controller/config/manager/testingservices/parallelapsp/TestingParallelAPSPModuleFactory.java b/opendaylight/config/config-manager/src/test/java/org/opendaylight/controller/config/manager/testingservices/parallelapsp/TestingParallelAPSPModuleFactory.java index 89b70e3e7a..4ce5dc91dd 100644 --- a/opendaylight/config/config-manager/src/test/java/org/opendaylight/controller/config/manager/testingservices/parallelapsp/TestingParallelAPSPModuleFactory.java +++ b/opendaylight/config/config-manager/src/test/java/org/opendaylight/controller/config/manager/testingservices/parallelapsp/TestingParallelAPSPModuleFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. + * Copyright (c) 2013, 2017 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, @@ -32,25 +32,23 @@ public class TestingParallelAPSPModuleFactory implements ModuleFactory { } @Override - public TestingParallelAPSPModule createModule(String instanceName, - DependencyResolver dependencyResolver, BundleContext bundleContext) { - return new TestingParallelAPSPModule(new ModuleIdentifier(NAME, - instanceName), dependencyResolver, null, null); + public TestingParallelAPSPModule createModule(final String instanceName, + final DependencyResolver dependencyResolver, final BundleContext bundleContext) { + return new TestingParallelAPSPModule(new ModuleIdentifier(NAME, instanceName), dependencyResolver, null, null); } @Override - public TestingParallelAPSPModule createModule(String instanceName, - DependencyResolver dependencyResolver, DynamicMBeanWithInstance old, BundleContext context) - throws Exception { + public TestingParallelAPSPModule createModule(final String instanceName, + final DependencyResolver dependencyResolver, final DynamicMBeanWithInstance old, + final BundleContext context) throws Exception { TestingParallelAPSPImpl oldInstance; try { oldInstance = (TestingParallelAPSPImpl) old.getInstance(); - } catch (ClassCastException e) { + } catch (final ClassCastException e) { oldInstance = null; } - TestingParallelAPSPModule result = new TestingParallelAPSPModule( - new ModuleIdentifier(NAME, instanceName), dependencyResolver, - old.getInstance(), oldInstance); + TestingParallelAPSPModule result = new TestingParallelAPSPModule(new ModuleIdentifier(NAME, instanceName), + dependencyResolver, old.getInstance(), oldInstance); // copy attributes String someParam = (String) old.getAttribute("SomeParam"); result.setSomeParam(someParam); @@ -61,13 +59,14 @@ public class TestingParallelAPSPModuleFactory implements ModuleFactory { @Override public boolean isModuleImplementingServiceInterface( - Class serviceInterface) { + final Class serviceInterface) { return false; } @Override - public Set getDefaultModules(DependencyResolverFactory dependencyResolverFactory, BundleContext context) { - return new HashSet(); + public Set getDefaultModules(final DependencyResolverFactory dependencyResolverFactory, + final BundleContext context) { + return new HashSet<>(); } @Override