Remove CSS code
[controller.git] / opendaylight / config / config-manager-facade-xml / src / main / java / org / opendaylight / controller / config / facade / xml / ConfigSubsystemFacadeFactory.java
diff --git a/opendaylight/config/config-manager-facade-xml/src/main/java/org/opendaylight/controller/config/facade/xml/ConfigSubsystemFacadeFactory.java b/opendaylight/config/config-manager-facade-xml/src/main/java/org/opendaylight/controller/config/facade/xml/ConfigSubsystemFacadeFactory.java
deleted file mode 100644 (file)
index 1d680a9..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * Copyright (c) 2015, 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.facade.xml;
-
-import com.google.common.collect.Sets;
-import java.util.Set;
-import org.opendaylight.controller.config.facade.xml.osgi.YangStoreService;
-import org.opendaylight.controller.config.util.ConfigRegistryClient;
-import org.opendaylight.controller.config.util.ConfigRegistryJMXClient;
-import org.opendaylight.controller.config.util.capability.Capability;
-import org.opendaylight.controller.config.util.capability.YangModuleCapability;
-import org.opendaylight.yangtools.yang.model.api.Module;
-import org.opendaylight.yangtools.yang.model.repo.api.RevisionSourceIdentifier;
-
-public class ConfigSubsystemFacadeFactory {
-
-    private final ConfigRegistryClient cfgRegClient;
-    private final ConfigRegistryJMXClient cfgRegClientNoNotifications;
-    private final YangStoreService yangStoreService;
-
-    public ConfigSubsystemFacadeFactory(final ConfigRegistryClient cfgRegClient,
-            final ConfigRegistryJMXClient jmxClientNoNotifications, final YangStoreService yangStoreService) {
-        this.cfgRegClient = cfgRegClient;
-        this.cfgRegClientNoNotifications = jmxClientNoNotifications;
-        this.yangStoreService = yangStoreService;
-    }
-
-    /**
-     * Create new instance of ConfigSubsystemFacade. Each instance works with a
-     * dedicated transaction provider, making the instances suitable for
-     * facade-per-client use.
-     */
-    public ConfigSubsystemFacade createFacade(final String id) {
-        return new ConfigSubsystemFacade(cfgRegClient, cfgRegClientNoNotifications, yangStoreService, id);
-    }
-
-    public YangStoreService getYangStoreService() {
-        return yangStoreService;
-    }
-
-    public Set<Capability> getCurrentCapabilities() {
-        Set<Module> modules = yangStoreService.getModules();
-        final Set<Capability> capabilities = Sets.newHashSet();
-        for (Module module : modules) {
-            capabilities.add(new YangModuleCapability(module, yangStoreService.getModuleSource(
-                RevisionSourceIdentifier.create(module.getName(), module.getRevision()))));
-        }
-        return capabilities;
-    }
-}