Populate data/ hierarchy
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / MapEntryNode.java
diff --git a/yang/yang-data-api/src/main/java/org/opendaylight/yangtools/yang/data/api/schema/MapEntryNode.java b/yang/yang-data-api/src/main/java/org/opendaylight/yangtools/yang/data/api/schema/MapEntryNode.java
deleted file mode 100644 (file)
index 9a6e6a5..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright (c) 2014 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.yangtools.yang.data.api.schema;
-
-import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
-import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifierWithPredicates;
-
-/**
- * Instance of Map entry, this node does not contains value, but child nodes.
- */
-public interface MapEntryNode extends DataContainerNode {
-    @Override
-    default Class<MapEntryNode> contract() {
-        return MapEntryNode.class;
-    }
-
-    /**
-     * Returns identifier of this node in parent map node
-     *
-     * <p>
-     * Contents of identifier is defined by <code>key</code> (
-     * {@link org.opendaylight.yangtools.yang.model.api.ListSchemaNode#getKeyDefinition()}
-     * ) statement in YANG schema for associated list item and child {@link LeafNode}s
-     * values with {@link NodeIdentifier} as defined in the schema.
-     *
-     * @return identifier of this node in the context of parent node
-     */
-    @Override
-    NodeIdentifierWithPredicates getIdentifier();
-}