432d1f2782bfdbea2a111afbcddeb20d6c5587c4
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / tree / spi / MutableTreeNode.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.tree.spi;
9
10 import org.eclipse.jdt.annotation.NonNull;
11 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
12 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
13 import org.opendaylight.yangtools.yang.data.api.schema.tree.StoreTreeNode;
14
15 /**
16  * A mutable tree node. This is a transient view materialized from a pre-existing node. Modifications are isolated. Once
17  * this object is {@link #seal()}ed, any interactions with it will result in undefined behavior.
18  */
19 public interface MutableTreeNode extends StoreTreeNode<TreeNode> {
20     /**
21      * Set the data component of the node.
22      *
23      * @param data New data component, may not be null.
24      * @throws NullPointerException if {@code data} is null
25      */
26     void setData(NormalizedNode<?, ?> data);
27
28     /**
29      * Set the new subtree version. This is typically invoked when the user
30      * has modified some of this node's children.
31      *
32      * @param subtreeVersion New subtree version.
33      * @throws NullPointerException if {@code subtreeVersion} is null
34      */
35     void setSubtreeVersion(Version subtreeVersion);
36
37     /**
38      * Add a new child node. This acts as add-or-replace operation, e.g. it
39      * succeeds even if a conflicting child is already present.
40      *
41      * @param child New child node.
42      * @throws NullPointerException if {@code child} is null
43      */
44     void addChild(TreeNode child);
45
46     /**
47      * Remove a child node. This acts as delete-or-nothing operation, e.g. it
48      * succeeds even if the corresponding child is not present.
49      *
50      * @param id Child identifier.
51      * @throws NullPointerException if {@code id} is null
52      */
53     void removeChild(PathArgument id);
54
55     /**
56      * Finish node modification and return a read-only view of this node. After
57      * this method is invoked, any further calls to this object's method result
58      * in undefined behavior.
59      *
60      * @return Read-only view of this node.
61      */
62     @NonNull TreeNode seal();
63 }