Convert ProxyDOMDataBroker tx creation to async
[netconf.git] / netconf / netconf-topology-singleton / src / main / java / org / opendaylight / netconf / topology / singleton / impl / tx / ProxyTransactionFacade.java
1 /*
2  * Copyright (c) 2018 Inocybe Technologies 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.netconf.topology.singleton.impl.tx;
9
10 import org.opendaylight.controller.md.sal.dom.api.DOMDataReadWriteTransaction;
11
12 /**
13  * Interfaces with a transaction back-end.
14  *
15  * @author Thomas Pantelis
16  */
17 interface ProxyTransactionFacade extends DOMDataReadWriteTransaction {
18 }