6edd0210fece864f67da118f93e4da871572915c
[yangtools.git] / yang / rfc7952-data-api / src / main / java / org / opendaylight / yangtools / rfc7952 / data / api / NormalizedMetadata.java
1 /*
2  * Copyright (c) 2019 PANTHEON.tech, s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.rfc7952.data.api;
9
10 import com.google.common.annotations.Beta;
11 import com.google.common.collect.ImmutableMap;
12 import java.util.Map;
13 import org.eclipse.jdt.annotation.NonNull;
14 import org.opendaylight.yangtools.concepts.Identifiable;
15 import org.opendaylight.yangtools.concepts.Immutable;
16 import org.opendaylight.yangtools.yang.common.QName;
17 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
18 import org.opendaylight.yangtools.yang.data.api.schema.LeafSetNode;
19 import org.opendaylight.yangtools.yang.data.api.schema.MapNode;
20 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
21 import org.opendaylight.yangtools.yang.data.api.schema.UnkeyedListNode;
22
23 /**
24  * RFC7952 metadata counterpart to a {@link NormalizedNode}. This interface is meant to be used as a companion to
25  * a NormalizedNode instance, hence it does not support iterating over its structure like it is possible with
26  * {@link NormalizedNode#getValue()}. Children may be inquired through {@link #getChildren()}.
27  *
28  * <p>
29  * This model of metadata <em>does not</em> have the RFC7952 restriction on metadata attachment to {@code list}s and
30  * {@code leaf-list}s because NormalizedNode data model has {@link LeafSetNode}, {@link MapNode} and
31  * {@link UnkeyedListNode} to which metadata can be attached.
32  *
33  * @author Robert Varga
34  */
35 @Beta
36 public interface NormalizedMetadata extends Identifiable<PathArgument>, Immutable {
37     /**
38      * Return the set of annotations defined in this metadata node. Values are expected to be effectively-immutable
39      * scalar types, like {@link String}s, {@link Number}s and similar. The map must also be effectively-immutable.
40      *
41      * @return The set of annotations attached to the corresponding data node.
42      */
43     @NonNull Map<QName, Object> getAnnotations();
44
45     /**
46      * Returns child nodes. Default implementation returns an empty immutable map.
47      *
48      * @return Child metadata nodes.
49      */
50     default @NonNull Map<PathArgument, NormalizedMetadata> getChildren() {
51         return ImmutableMap.of();
52     }
53 }