Merge "Bug:3026 - Echo response timeout needs be exported to configuration"
[openflowplugin.git] / openflowplugin / src / main / java / org / opendaylight / openflowplugin / openflow / md / core / RpcListeningExecutorService.java
index 23c561c23d2cfcf4c990c81bdf23cf50e2e5a290..f785a07fdce271d78b338c68b1c9d3aa9a9e39bf 100644 (file)
@@ -16,7 +16,7 @@ import java.util.concurrent.TimeUnit;
 import java.util.concurrent.TimeoutException;
 
 import org.opendaylight.openflowplugin.openflow.md.core.sal.OFRpcTask;
-import org.opendaylight.openflowplugin.openflow.md.queue.MessageSpy;
+import org.opendaylight.openflowplugin.api.openflow.statistics.MessageSpy;
 import org.opendaylight.yangtools.yang.binding.DataContainer;
 
 import com.google.common.util.concurrent.ListenableFuture;
@@ -32,7 +32,7 @@ public class RpcListeningExecutorService implements ListeningExecutorService {
     private DataContainer notSupportedTask = new NoDataContainerTask();
     
     /**
-     * @param executorService
+     * @param executorService executor service
      */
     public RpcListeningExecutorService(ListeningExecutorService executorService) {
         this.executorServiceDelegate = executorService;