BUG-1472: deprecated CompositeNode and friends
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / MutableCompositeNode.java
1 /*
2  * Copyright (c) 2013 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;
9
10 import java.util.List;
11
12 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNodeContainer;
13
14
15 /**
16  * @author michal.rehak
17  *
18  * @deprecated Deprecated in favor of {@link NormalizedNodeContainer} classes.
19  */
20 @Deprecated
21 public interface MutableCompositeNode extends MutableNode<List<Node<?>>>, CompositeNode {
22
23     /**
24      * update internal map
25      */
26     @Deprecated
27     void init();
28
29     /**
30      * @return original node, if available
31      */
32     CompositeNode getOriginal();
33 }