Remove CSS code
[controller.git] / opendaylight / config / config-manager / src / test / java / org / opendaylight / controller / config / manager / testingservices / parallelapsp / test / AbstractParallelAPSPTest.java
diff --git a/opendaylight/config/config-manager/src/test/java/org/opendaylight/controller/config/manager/testingservices/parallelapsp/test/AbstractParallelAPSPTest.java b/opendaylight/config/config-manager/src/test/java/org/opendaylight/controller/config/manager/testingservices/parallelapsp/test/AbstractParallelAPSPTest.java
deleted file mode 100644 (file)
index 4f1664a..0000000
+++ /dev/null
@@ -1,48 +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.manager.testingservices.parallelapsp.test;
-
-import javax.management.InstanceAlreadyExistsException;
-import javax.management.ObjectName;
-import org.opendaylight.controller.config.manager.impl.AbstractConfigTest;
-import org.opendaylight.controller.config.manager.testingservices.parallelapsp.TestingParallelAPSPConfigMXBean;
-import org.opendaylight.controller.config.manager.testingservices.parallelapsp.TestingParallelAPSPModuleFactory;
-import org.opendaylight.controller.config.manager.testingservices.threadpool.TestingFixedThreadPoolConfigMXBean;
-import org.opendaylight.controller.config.util.ConfigTransactionJMXClient;
-
-public abstract class AbstractParallelAPSPTest extends AbstractConfigTest {
-    protected final String fixed1 = "fixed1";
-    protected final String apsp1 = "apsp-parallel";
-
-    protected abstract String getThreadPoolImplementationName();
-
-    protected ObjectName createParallelAPSP(
-            final ConfigTransactionJMXClient transaction, final ObjectName threadPoolON)
-            throws InstanceAlreadyExistsException {
-        ObjectName apspName = transaction.createModule(
-                TestingParallelAPSPModuleFactory.NAME, apsp1);
-        TestingParallelAPSPConfigMXBean parallelAPSPConfigProxy = transaction
-                .newMXBeanProxy(apspName, TestingParallelAPSPConfigMXBean.class);
-        parallelAPSPConfigProxy.setSomeParam("ahoj");
-        parallelAPSPConfigProxy.setThreadPool(threadPoolON);
-        return apspName;
-    }
-
-    protected ObjectName createFixed1(final ConfigTransactionJMXClient transaction,
-            final int numberOfThreads) throws InstanceAlreadyExistsException {
-
-        ObjectName name = transaction.createModule(
-                getThreadPoolImplementationName(), fixed1);
-
-        TestingFixedThreadPoolConfigMXBean fixedConfigProxy = transaction
-                .newMXBeanProxy(name, TestingFixedThreadPoolConfigMXBean.class);
-        fixedConfigProxy.setThreadCount(numberOfThreads);
-
-        return name;
-    }
-}