Remove CSS code
[controller.git] / opendaylight / config / config-manager / src / main / java / org / opendaylight / controller / config / manager / impl / util / ModuleQNameUtil.java
diff --git a/opendaylight/config/config-manager/src/main/java/org/opendaylight/controller/config/manager/impl/util/ModuleQNameUtil.java b/opendaylight/config/config-manager/src/main/java/org/opendaylight/controller/config/manager/impl/util/ModuleQNameUtil.java
deleted file mode 100644 (file)
index e1c73df..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * 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,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-package org.opendaylight.controller.config.manager.impl.util;
-
-import java.util.HashSet;
-import java.util.Map;
-import java.util.Map.Entry;
-import java.util.Set;
-import org.opendaylight.controller.config.spi.ModuleFactory;
-import org.opendaylight.yangtools.yang.binding.annotations.ModuleQName;
-import org.opendaylight.yangtools.yang.common.QName;
-import org.osgi.framework.BundleContext;
-
-public final class ModuleQNameUtil {
-
-    private ModuleQNameUtil() {
-    }
-
-    public static Set<String> getQNames(final Map<String, Entry<ModuleFactory, BundleContext>> resolved) {
-        final Set<String> result = new HashSet<>();
-        for (final Entry<ModuleFactory, BundleContext> entry : resolved.values()) {
-            Class<?> inspected = entry.getKey().getClass();
-            if (inspected.isInterface()) {
-                throw new IllegalArgumentException("Unexpected interface " + inspected);
-            }
-            ModuleQName annotation = null;
-            while (annotation == null && inspected != null) {
-                annotation = inspected.getAnnotation(ModuleQName.class);
-                inspected = inspected.getSuperclass();
-            }
-            if (annotation != null) {
-                result.add(QName.create(annotation.namespace(), annotation.revision(), annotation.name()).toString());
-            }
-        }
-        return result;
-    }
-}