Bump MRI upstreams
[netconf.git] / restconf / restconf-nb-bierman02 / src / main / java / org / opendaylight / netconf / sal / restconf / impl / NormalizedDataPrunner.java
index f5f03af8ad80ca650cd6ce21bce8950105fd4f77..975da60b3d4704cb3e62a4e6560b341cff0b9cee 100644 (file)
@@ -7,11 +7,9 @@
  */
 package org.opendaylight.netconf.sal.restconf.impl;
 
-import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.AugmentationIdentifier;
 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifierWithPredicates;
-import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
 import org.opendaylight.yangtools.yang.data.api.schema.AnyxmlNode;
 import org.opendaylight.yangtools.yang.data.api.schema.AugmentationNode;
 import org.opendaylight.yangtools.yang.data.api.schema.ChoiceNode;
@@ -24,23 +22,22 @@ import org.opendaylight.yangtools.yang.data.api.schema.MapEntryNode;
 import org.opendaylight.yangtools.yang.data.api.schema.MapNode;
 import org.opendaylight.yangtools.yang.data.api.schema.MixinNode;
 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
-import org.opendaylight.yangtools.yang.data.api.schema.OrderedLeafSetNode;
-import org.opendaylight.yangtools.yang.data.api.schema.OrderedMapNode;
+import org.opendaylight.yangtools.yang.data.api.schema.SystemMapNode;
 import org.opendaylight.yangtools.yang.data.api.schema.UnkeyedListEntryNode;
 import org.opendaylight.yangtools.yang.data.api.schema.UnkeyedListNode;
+import org.opendaylight.yangtools.yang.data.api.schema.UserMapNode;
+import org.opendaylight.yangtools.yang.data.api.schema.builder.CollectionNodeBuilder;
+import org.opendaylight.yangtools.yang.data.api.schema.builder.DataContainerNodeBuilder;
 import org.opendaylight.yangtools.yang.data.impl.schema.Builders;
-import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.CollectionNodeBuilder;
-import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.DataContainerNodeBuilder;
 
 class NormalizedDataPrunner {
 
-    public DataContainerChild<?, ?> pruneDataAtDepth(final DataContainerChild<?, ?> node, final Integer depth) {
+    public DataContainerChild pruneDataAtDepth(final DataContainerChild node, final Integer depth) {
         if (depth == null) {
             return node;
         }
 
-        if (node instanceof LeafNode || node instanceof LeafSetNode || node instanceof AnyxmlNode
-                || node instanceof OrderedLeafSetNode) {
+        if (node instanceof LeafNode || node instanceof LeafSetNode || node instanceof AnyxmlNode) {
             return node;
         } else if (node instanceof MixinNode) {
             return processMixinNode(node, depth);
@@ -50,12 +47,12 @@ class NormalizedDataPrunner {
         throw new IllegalStateException("Unexpected Mixin node occured why pruning data to requested depth");
     }
 
-    private DataContainerChild<?, ?> processMixinNode(final NormalizedNode<?, ?> node, final Integer depth) {
+    private DataContainerChild processMixinNode(final NormalizedNode node, final Integer depth) {
         if (node instanceof AugmentationNode) {
             return processAugmentationNode(node, depth);
         } else if (node instanceof ChoiceNode) {
             return processChoiceNode(node, depth);
-        } else if (node instanceof OrderedMapNode) {
+        } else if (node instanceof UserMapNode) {
             return processOrderedMapNode(node, depth);
         } else if (node instanceof MapNode) {
             return processMapNode(node, depth);
@@ -65,57 +62,51 @@ class NormalizedDataPrunner {
         throw new IllegalStateException("Unexpected Mixin node occured why pruning data to requested depth");
     }
 
-    private DataContainerChild<?, ?> processContainerNode(final NormalizedNode<?, ?> node, final Integer depth) {
+    private DataContainerChild processContainerNode(final NormalizedNode node, final Integer depth) {
         final ContainerNode containerNode = (ContainerNode) node;
         DataContainerNodeBuilder<NodeIdentifier, ContainerNode> newContainerBuilder = Builders.containerBuilder()
                 .withNodeIdentifier(containerNode.getIdentifier());
         if (depth > 1) {
-            processDataContainerChild((DataContainerNode<?>) node, depth, newContainerBuilder);
+            processDataContainerChild((DataContainerNode) node, depth, newContainerBuilder);
         }
         return newContainerBuilder.build();
     }
 
-    private DataContainerChild<?, ?> processChoiceNode(final NormalizedNode<?, ?> node, final Integer depth) {
+    private DataContainerChild processChoiceNode(final NormalizedNode node, final Integer depth) {
         final ChoiceNode choiceNode = (ChoiceNode) node;
         DataContainerNodeBuilder<NodeIdentifier, ChoiceNode> newChoiceBuilder = Builders.choiceBuilder()
                 .withNodeIdentifier(choiceNode.getIdentifier());
 
-        processDataContainerChild((DataContainerNode<?>) node, depth, newChoiceBuilder);
+        processDataContainerChild((DataContainerNode) node, depth, newChoiceBuilder);
 
         return newChoiceBuilder.build();
     }
 
-    private DataContainerChild<?, ?> processAugmentationNode(final NormalizedNode<?, ?> node, final Integer depth) {
+    private DataContainerChild processAugmentationNode(final NormalizedNode node, final Integer depth) {
         final AugmentationNode augmentationNode = (AugmentationNode) node;
-        DataContainerNodeBuilder<AugmentationIdentifier, ? extends DataContainerChild<?, ?>> newAugmentationBuilder =
+        DataContainerNodeBuilder<AugmentationIdentifier, ? extends DataContainerChild> newAugmentationBuilder =
                 Builders.augmentationBuilder().withNodeIdentifier(augmentationNode.getIdentifier());
 
-        processDataContainerChild((DataContainerNode<?>) node, depth, newAugmentationBuilder);
+        processDataContainerChild((DataContainerNode) node, depth, newAugmentationBuilder);
 
         return newAugmentationBuilder.build();
     }
 
-    private void processDataContainerChild(
-            final DataContainerNode<?> node,
-            final Integer depth,
-            final DataContainerNodeBuilder<? extends YangInstanceIdentifier.PathArgument,
-                    ? extends DataContainerNode<?>> newBuilder) {
-
-        for (DataContainerChild<? extends PathArgument, ?> nodeValue : node.getValue()) {
+    private void processDataContainerChild(final DataContainerNode node, final Integer depth,
+            final DataContainerNodeBuilder<?, ?> newBuilder) {
+        for (DataContainerChild nodeValue : node.body()) {
             newBuilder.withChild(pruneDataAtDepth(nodeValue, depth - 1));
         }
-
     }
 
-    private DataContainerChild<?, ?> processUnkeyedListNode(final NormalizedNode<?, ?> node, final Integer depth) {
+    private DataContainerChild processUnkeyedListNode(final NormalizedNode node, final Integer depth) {
         CollectionNodeBuilder<UnkeyedListEntryNode, UnkeyedListNode> newUnkeyedListBuilder = Builders
                 .unkeyedListBuilder();
         if (depth > 1) {
-            for (UnkeyedListEntryNode oldUnkeyedListEntry : ((UnkeyedListNode) node).getValue()) {
+            for (UnkeyedListEntryNode oldUnkeyedListEntry : ((UnkeyedListNode) node).body()) {
                 DataContainerNodeBuilder<NodeIdentifier, UnkeyedListEntryNode> newUnkeyedListEntry = Builders
                         .unkeyedListEntryBuilder().withNodeIdentifier(oldUnkeyedListEntry.getIdentifier());
-                for (DataContainerChild<? extends PathArgument, ?> oldUnkeyedListEntryValue : oldUnkeyedListEntry
-                        .getValue()) {
+                for (DataContainerChild oldUnkeyedListEntryValue : oldUnkeyedListEntry.body()) {
                     newUnkeyedListEntry.withChild(pruneDataAtDepth(oldUnkeyedListEntryValue, depth - 1));
                 }
                 newUnkeyedListBuilder.addChild(newUnkeyedListEntry.build());
@@ -124,25 +115,25 @@ class NormalizedDataPrunner {
         return newUnkeyedListBuilder.build();
     }
 
-    private DataContainerChild<?, ?> processOrderedMapNode(final NormalizedNode<?, ?> node, final Integer depth) {
-        CollectionNodeBuilder<MapEntryNode, OrderedMapNode> newOrderedMapNodeBuilder = Builders.orderedMapBuilder();
+    private DataContainerChild processOrderedMapNode(final NormalizedNode node, final Integer depth) {
+        CollectionNodeBuilder<MapEntryNode, UserMapNode> newOrderedMapNodeBuilder = Builders.orderedMapBuilder();
         processMapEntries(node, depth, newOrderedMapNodeBuilder);
         return newOrderedMapNodeBuilder.build();
     }
 
-    private DataContainerChild<?, ?> processMapNode(final NormalizedNode<?, ?> node, final Integer depth) {
-        CollectionNodeBuilder<MapEntryNode, MapNode> newMapNodeBuilder = Builders.mapBuilder();
+    private DataContainerChild processMapNode(final NormalizedNode node, final Integer depth) {
+        CollectionNodeBuilder<MapEntryNode, SystemMapNode> newMapNodeBuilder = Builders.mapBuilder();
         processMapEntries(node, depth, newMapNodeBuilder);
         return newMapNodeBuilder.build();
     }
 
-    private void processMapEntries(final NormalizedNode<?, ?> node, final Integer depth,
+    private void processMapEntries(final NormalizedNode node, final Integer depth,
             final CollectionNodeBuilder<MapEntryNode, ? extends MapNode> newOrderedMapNodeBuilder) {
         if (depth > 1) {
-            for (MapEntryNode oldMapEntryNode : ((MapNode) node).getValue()) {
+            for (MapEntryNode oldMapEntryNode : ((MapNode) node).body()) {
                 DataContainerNodeBuilder<NodeIdentifierWithPredicates, MapEntryNode> newMapEntryNodeBuilder =
                         Builders.mapEntryBuilder().withNodeIdentifier(oldMapEntryNode.getIdentifier());
-                for (DataContainerChild<? extends PathArgument, ?> mapEntryNodeValue : oldMapEntryNode.getValue()) {
+                for (DataContainerChild mapEntryNodeValue : oldMapEntryNode.body()) {
                     newMapEntryNodeBuilder.withChild(pruneDataAtDepth(mapEntryNodeValue, depth - 1));
                 }
                 newOrderedMapNodeBuilder.withChild(newMapEntryNodeBuilder.build());