Bug 6794: Remove threadpool config modules
[controller.git] / opendaylight / config / threadpool-config-impl / src / test / java / org / opendaylight / controller / config / threadpool / naming / TestingNamingThreadPoolFactoryModule.java
diff --git a/opendaylight/config/threadpool-config-impl/src/test/java/org/opendaylight/controller/config/threadpool/naming/TestingNamingThreadPoolFactoryModule.java b/opendaylight/config/threadpool-config-impl/src/test/java/org/opendaylight/controller/config/threadpool/naming/TestingNamingThreadPoolFactoryModule.java
deleted file mode 100644 (file)
index f91ec47..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-/*
- * 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
- */
-package org.opendaylight.controller.config.threadpool.naming;
-
-import static org.mockito.Matchers.any;
-import static org.mockito.Mockito.doNothing;
-import static org.mockito.Mockito.doReturn;
-import static org.mockito.Mockito.mock;
-
-import java.io.Closeable;
-import java.io.IOException;
-import org.opendaylight.controller.config.api.DynamicMBeanWithInstance;
-import org.opendaylight.controller.config.api.ModuleIdentifier;
-import org.opendaylight.controller.config.spi.Module;
-import org.opendaylight.controller.config.threadpool.util.NamingThreadPoolFactory;
-import org.opendaylight.controller.config.yang.threadpool.ThreadFactoryServiceInterface;
-import org.opendaylight.controller.config.yang.threadpool.impl.NamingThreadFactoryModuleMXBean;
-
-public class TestingNamingThreadPoolFactoryModule implements Module, ThreadFactoryServiceInterface,
-        NamingThreadFactoryModuleMXBean {
-
-    private final NamingThreadPoolFactory fact;
-
-    public TestingNamingThreadPoolFactoryModule() throws IOException {
-        fact = mock(NamingThreadPoolFactory.class);
-        Thread thread = mock(Thread.class);
-        doNothing().when(thread).start();
-        doReturn(thread).when(fact).newThread(any(Runnable.class));
-        doNothing().when(fact).close();
-    }
-
-    public TestingNamingThreadPoolFactoryModule(DynamicMBeanWithInstance old) {
-        fact = (NamingThreadPoolFactory) old.getInstance();
-    }
-
-    @Override
-    public ModuleIdentifier getIdentifier() {
-        return new ModuleIdentifier(TestingNamingThreadPoolFactoryModule.class.getCanonicalName(), "mock");
-    }
-
-    @Override
-    public String getNamePrefix() {
-        return null;
-    }
-
-    @Override
-    public void setNamePrefix(String arg) {
-        throw new UnsupportedOperationException();
-    }
-
-    @Override
-    public void validate() {
-    }
-
-    @Override
-    public Closeable getInstance() {
-        return fact;
-    }
-
-    @Override
-    public boolean canReuse(Module oldModule) {
-        return false;
-    }
-
-}