Remove NormalizedNode.getNodeType()
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / NormalizedNode.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. 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.yang.data.api.schema;
9
10 import org.eclipse.jdt.annotation.NonNull;
11 import org.opendaylight.yangtools.concepts.Identifiable;
12 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
13
14 /**
15  * Node which is normalized according to the YANG schema
16  * is identifiable by a {@link org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier}.
17  *
18  * <p>
19  * See subinterfaces of this interface for concretization of node.
20  */
21 /*
22  * FIXME: 8.0.0: NormalizedNode represents the perfectly-compliant view of the data, as evaluated by an implementation,
23  *               which is currently singular, with respect of its interpretation of a SchemaContext. This includes
24  *               leaf values, which are required to hold normalized representation for a particular implementation,
25  *               which may be affected by its understanding of any YANG extensions present -- such as optional type
26  *               handling hints and bindings.
27  *
28  *               Implementations (i.e. the reference implementation and parsers) will need to start using
29  *               yang.common.Uint8 and friends and, if possible, express data validation in terms
30  *               of yang.common.CanonicalValue and yang.common.CanonicalValueValidator.
31  *
32  *               This notably means that to efficiently implement any sort of lenient parsing, we need a separate
33  *               concept which contains an unverified, potentially non-conformant data tree, which the consumer needs
34  *               to check/fixup if it wishes to use it as a NormalizedNode. Such a concept should be called
35  *               "UnverifiedData".
36  *
37  * FIXME: 8.0.0: Once we have UnverifiedData, we should really rename this to "NormalizedData" or similar to unload
38  *               some "Node" ambiguity. "Node" should be a generic term reserved for a particular domain -- hence 'node'
39  *               can be used to refer to either a 'schema node' in context of yang.model.api, or to
40  *               a 'normalized data node' in context of yang.data.api.
41  *
42  * FIXME: 8.0.0: Well, not quite. The structure of unverified data is really codec specific -- and JSON and XML
43  *               do not agree on details. Furthermore things get way more complicated when we have a cross-schema
44  *               boundary -- like RFC8528. Hence we cannot really have a reasonably-structured concept of unverified
45  *               data. Nevertheless, this interface should be named 'NormalizedData'.
46  */
47 public interface NormalizedNode extends Identifiable<PathArgument> {
48     @Override
49     // We override here, so that NormalizedNode.getIdentifier() has fewer implementations
50     PathArgument getIdentifier();
51
52     /**
53      * Returns the body of this node. While the return value specifies {@link Object}, this method's return value has
54      * further semantics. The returned object must be a well-published contract, such as {@code String},
55      * {@code Collection<NormalizedNode>} or {@code DOMSource}.
56      *
57      * @return Returned value of this node.
58      */
59     @NonNull Object body();
60 }