Bump odlparent to 5.0.0
[netconf.git] / netconf / sal-netconf-connector / src / main / java / org / opendaylight / netconf / sal / connect / api / RemoteDeviceCommunicator.java
index 65cf0ad9c62b82ef11a513d3f36c0eebb6b7c1f3..efae796ad29bf65e1157e6724a72db08b8e127bd 100644 (file)
@@ -7,13 +7,13 @@
  */
 package org.opendaylight.netconf.sal.connect.api;
 
-import com.google.common.util.concurrent.FluentFuture;
+import com.google.common.util.concurrent.ListenableFuture;
 import org.opendaylight.yangtools.yang.common.QName;
 import org.opendaylight.yangtools.yang.common.RpcResult;
 
 public interface RemoteDeviceCommunicator<M> extends AutoCloseable {
 
-    FluentFuture<RpcResult<M>> sendRequest(M message, QName rpc);
+    ListenableFuture<RpcResult<M>> sendRequest(M message, QName rpc);
 
     @Override
     void close();