Split out BindingDataObjectCodecTreeNode.streamChild()
[mdsal.git] / binding / mdsal-binding-dom-codec-api / src / main / java / org / opendaylight / mdsal / binding / dom / codec / api / BindingCodecTree.java
1 /*
2  * Copyright (c) 2015 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.mdsal.binding.dom.codec.api;
9
10 import com.google.common.annotations.Beta;
11 import org.eclipse.jdt.annotation.NonNull;
12 import org.eclipse.jdt.annotation.Nullable;
13 import org.opendaylight.yangtools.yang.binding.DataObject;
14 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
15 import org.opendaylight.yangtools.yang.common.Empty;
16 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
17 import org.opendaylight.yangtools.yang.model.api.stmt.SchemaNodeIdentifier.Absolute;
18
19 /**
20  * Navigable tree representing hierarchy of Binding to Normalized Node codecs. This navigable tree is associated to
21  * a concrete set of YANG models, represented by SchemaContext and provides access to subtree specific serialization
22  * context.
23  */
24 // TODO: Add more detailed documentation
25 public interface BindingCodecTree extends BindingDataObjectCodecTreeParent<Empty> {
26
27     @Nullable <T extends DataObject> BindingDataObjectCodecTreeNode<T> getSubtreeCodec(InstanceIdentifier<T> path);
28
29     @Nullable BindingCodecTreeNode getSubtreeCodec(YangInstanceIdentifier path);
30
31     @Nullable BindingCodecTreeNode getSubtreeCodec(Absolute path);
32
33     /**
34      * Get the {@link BindingIdentityCodec} associated with this tree.
35      *
36      * @return A BindingIdentityCodec instance.
37      */
38     @Beta
39     @NonNull BindingIdentityCodec getIdentityCodec();
40
41     /**
42      * Get the {@link BindingInstanceIdentifierCodec} associated with this tree.
43      *
44      * @return A BindingInstanceIdentifierCodec instance.
45      */
46     @Beta
47     @NonNull BindingInstanceIdentifierCodec getInstanceIdentifierCodec();
48 }