Merge "Cosmetics: check in pom.xml files as _sort_pom_ wants them to be"
[controller.git] / opendaylight / md-sal / sal-dom-broker / src / main / java / org / opendaylight / controller / md / sal / dom / store / impl / tree / DataTreeCandidate.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.controller.md.sal.dom.store.impl.tree;
9
10 import org.opendaylight.controller.md.sal.dom.store.impl.tree.data.NodeModification;
11 import org.opendaylight.controller.md.sal.dom.store.impl.tree.data.StoreMetadataNode;
12 import org.opendaylight.yangtools.yang.data.api.InstanceIdentifier;
13
14 public interface DataTreeCandidate extends AutoCloseable {
15         @Override
16         void close();
17
18         InstanceIdentifier getRootPath();
19
20         @Deprecated
21         NodeModification getModificationRoot();
22
23         @Deprecated
24         StoreMetadataNode getBeforeRoot();
25
26         @Deprecated
27         StoreMetadataNode getAfterRoot();
28 }