Fixed Checkstyle violation errors in mdsal-dom-api module
[mdsal.git] / dom / mdsal-dom-api / src / main / java / org / opendaylight / mdsal / dom / api / DOMTransactionChain.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.mdsal.dom.api;
9
10 import org.opendaylight.mdsal.common.api.TransactionChain;
11 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
12 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
13
14 /**
15  * A chain of DOM Data transactions.
16  * Transactions in a chain need to be committed in sequence and each
17  * transaction should see the effects of previous transactions as if they happened. A chain
18  * makes no guarantees of atomicity, in fact transactions are committed as soon as possible.
19  *
20  * <p>
21  * This interface is type capture of {@link TransactionChain} for DOM Data Contracts.
22  */
23 public interface DOMTransactionChain extends TransactionChain<YangInstanceIdentifier, NormalizedNode<?, ?>> {
24
25     @Override
26     DOMDataTreeReadTransaction newReadOnlyTransaction();
27
28     @Override
29     DOMDataTreeWriteTransaction newWriteOnlyTransaction();
30
31 }