9c9b26d5fb7d19a7f38cdc05b7bf96e24b1de919
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / tree / DataTree.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;
9
10 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
11
12 /**
13  * Interface representing a data tree which can be modified in an MVCC fashion.
14  */
15 public interface DataTree extends DataTreeTip, ReadOnlyDataTree {
16     /**
17      * Make the data tree use a new schema context. The context will be used
18      * only by subsequent operations.
19      *
20      * @param newSchemaContext new SchemaContext
21      * @throws IllegalArgumentException if the new context is incompatible
22      */
23     void setSchemaContext(SchemaContext newSchemaContext);
24
25     /**
26      * Commit a data tree candidate.
27      *
28      * @param candidate data tree candidate
29      */
30     void commit(DataTreeCandidate candidate);
31 }