Add NotificationService.registerListener()
[mdsal.git] / binding / mdsal-binding-api / src / main / java / org / opendaylight / mdsal / binding / api / Transaction.java
1 /*
2  * Copyright (c) 2018 Pantheon Technologies, s.r.o. 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.binding.api;
9
10 import org.opendaylight.yangtools.concepts.Identifiable;
11
12 /**
13  * A common parent for all transactions which operate on a conceptual data tree.
14  * See derived transaction types for more concrete behavior:
15  * <ul>
16  * <li>{@link ReadTransaction} - Read capabilities, user is able to read data from data tree</li>
17  * <li>{@link WriteTransaction} - Write capabilities, user is able to propose changes to data tree</li>
18  * </ul>
19  *
20  * <b>Implementation Note:</b> This interface is not intended to be implemented by users of MD-SAL.
21  */
22 public interface Transaction extends Identifiable<Object> {
23
24 }