Remove yang.binding.RpcService
[mdsal.git] / binding / mdsal-binding-api / src / main / java / org / opendaylight / mdsal / binding / api / ReadWriteTransaction.java
index 449775fdb0d12e4dfeff5a1064af5d53c0515754..0e6c48d45efa85b0fc958d654ba391085100888c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
+ * Copyright (c) 2017 Brocade Communications Systems, Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
@@ -7,15 +7,16 @@
  */
 package org.opendaylight.mdsal.binding.api;
 
-import org.opendaylight.controller.md.sal.common.api.data.AsyncReadWriteTransaction;
-import org.opendaylight.yangtools.yang.binding.DataObject;
-import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
+import com.google.common.annotations.Beta;
 
 /**
  * A transaction that enables combined read/write capabilities.
+ *
  * <p>
- * For more information on usage and examples, please see the documentation in {@link AsyncReadWriteTransaction}.
+ * For more information on usage and examples, please see the documentation in {@link ReadTransaction} and
+ * {@link WriteTransaction}.
  */
-public interface ReadWriteTransaction extends ReadTransaction, WriteTransaction, AsyncReadWriteTransaction<InstanceIdentifier<?>, DataObject> {
+@Beta
+public interface ReadWriteTransaction extends WriteTransaction, ReadWriteOperations {
 
 }