Remove CSS code
[controller.git] / opendaylight / config / config-manager-facade-xml / src / main / java / org / opendaylight / controller / config / facade / xml / mapping / attributes / fromxml / CompositeAttributeReadingStrategy.java
diff --git a/opendaylight/config/config-manager-facade-xml/src/main/java/org/opendaylight/controller/config/facade/xml/mapping/attributes/fromxml/CompositeAttributeReadingStrategy.java b/opendaylight/config/config-manager-facade-xml/src/main/java/org/opendaylight/controller/config/facade/xml/mapping/attributes/fromxml/CompositeAttributeReadingStrategy.java
deleted file mode 100644 (file)
index f352814..0000000
+++ /dev/null
@@ -1,67 +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.mapping.attributes.fromxml;
-
-import com.google.common.base.Preconditions;
-import com.google.common.base.Strings;
-import com.google.common.collect.Lists;
-import com.google.common.collect.Maps;
-import java.util.List;
-import java.util.Map;
-import java.util.Map.Entry;
-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;
-import org.opendaylight.controller.config.util.xml.XmlMappingConstants;
-
-public class CompositeAttributeReadingStrategy extends AbstractAttributeReadingStrategy {
-
-    private final Map<String, AttributeReadingStrategy> innerStrategies;
-
-    public CompositeAttributeReadingStrategy(final String nullableDefault,
-            final Map<String, AttributeReadingStrategy> innerStrategies) {
-        super(nullableDefault);
-        this.innerStrategies = innerStrategies;
-    }
-
-    @Override
-    AttributeConfigElement readElementHook(final List<XmlElement> configNodes) throws DocumentedException {
-
-        Preconditions.checkState(configNodes.size() == 1, "This element should be present only once %s", configNodes);
-
-        XmlElement complexElement = configNodes.get(0);
-
-        Map<String, Object> innerMap = Maps.newHashMap();
-
-        List<XmlElement> recognisedChildren = Lists.newArrayList();
-        for (Entry<String, AttributeReadingStrategy> innerAttrEntry : innerStrategies.entrySet()) {
-            List<XmlElement> childItem = complexElement.getChildElementsWithSameNamespace(innerAttrEntry.getKey());
-            recognisedChildren.addAll(childItem);
-
-            AttributeConfigElement resolvedInner = innerAttrEntry.getValue().readElement(childItem);
-
-            Object value = resolvedInner.getValue();
-            if (value == null) {
-                value = resolvedInner.getDefaultValue();
-            }
-
-            innerMap.put(innerAttrEntry.getKey(), value);
-        }
-
-        complexElement.checkUnrecognisedElements(recognisedChildren);
-
-        String perInstanceEditStrategy = complexElement.getAttribute(XmlMappingConstants.OPERATION_ATTR_KEY,
-                XmlMappingConstants.URN_IETF_PARAMS_XML_NS_NETCONF_BASE_1_0);
-
-        return Strings.isNullOrEmpty(perInstanceEditStrategy)
-                ? AttributeConfigElement.create(getNullableDefault(), innerMap)
-                : AttributeConfigElement.create(getNullableDefault(), innerMap,
-                        EditStrategyType.valueOf(perInstanceEditStrategy));
-    }
-}