Remove CSS code
[controller.git] / opendaylight / config / config-manager-facade-xml / src / main / java / org / opendaylight / controller / config / facade / xml / ConfigExecution.java
diff --git a/opendaylight/config/config-manager-facade-xml/src/main/java/org/opendaylight/controller/config/facade/xml/ConfigExecution.java b/opendaylight/config/config-manager-facade-xml/src/main/java/org/opendaylight/controller/config/facade/xml/ConfigExecution.java
deleted file mode 100644 (file)
index d6179c7..0000000
+++ /dev/null
@@ -1,77 +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.Multimap;
-import java.util.Map;
-import org.opendaylight.controller.config.api.ServiceReferenceReadableRegistry;
-import org.opendaylight.controller.config.facade.xml.mapping.config.Config;
-import org.opendaylight.controller.config.facade.xml.mapping.config.ModuleElementDefinition;
-import org.opendaylight.controller.config.facade.xml.mapping.config.ModuleElementResolved;
-import org.opendaylight.controller.config.facade.xml.mapping.config.ServiceRegistryWrapper;
-import org.opendaylight.controller.config.facade.xml.mapping.config.Services;
-import org.opendaylight.controller.config.facade.xml.strategy.EditStrategyType;
-import org.opendaylight.controller.config.util.xml.DocumentedException;
-import org.opendaylight.controller.config.util.xml.XmlElement;
-
-public class ConfigExecution {
-
-    private final TestOption testOption;
-    private final EditStrategyType defaultEditStrategyType;
-    private final Services services;
-    private final Config configResolver;
-    private final XmlElement configElement;
-
-    public ConfigExecution(final Config configResolver, final XmlElement configElement, final TestOption testOption,
-            final EditStrategyType defaultStrategy) throws DocumentedException {
-        Config.checkUnrecognisedChildren(configElement);
-        this.configResolver = configResolver;
-        this.configElement = configElement;
-        this.services = configResolver.fromXmlServices(configElement);
-        this.testOption = testOption;
-        this.defaultEditStrategyType = defaultStrategy;
-    }
-
-    public boolean shouldTest() {
-        return testOption == TestOption.testOnly || testOption == TestOption.testThenSet;
-    }
-
-    public boolean shouldSet() {
-        return testOption == TestOption.set || testOption == TestOption.testThenSet;
-    }
-
-    public Map<String, Multimap<String, ModuleElementResolved>> getResolvedXmlElements(
-            final ServiceReferenceReadableRegistry serviceRegistry) throws DocumentedException {
-        return configResolver.fromXmlModulesResolved(configElement, defaultEditStrategyType,
-                getServiceRegistryWrapper(serviceRegistry));
-    }
-
-    public ServiceRegistryWrapper getServiceRegistryWrapper(final ServiceReferenceReadableRegistry serviceRegistry) {
-        // TODO cache service registry
-        return new ServiceRegistryWrapper(serviceRegistry);
-    }
-
-    public Map<String, Multimap<String, ModuleElementDefinition>> getModulesDefinition(
-            final ServiceReferenceReadableRegistry serviceRegistry) throws DocumentedException {
-        return configResolver.fromXmlModulesMap(configElement, defaultEditStrategyType,
-                getServiceRegistryWrapper(serviceRegistry));
-    }
-
-    public EditStrategyType getDefaultStrategy() {
-        return defaultEditStrategyType;
-    }
-
-    public Services getServices() {
-        return services;
-    }
-
-    public XmlElement getConfigElement() {
-        return configElement;
-    }
-}