Merge "Bug 4957 Add async shuttingDown method for TransactionChainManager"
[openflowplugin.git] / openflowplugin / src / main / java / org / opendaylight / openflowplugin / openflow / md / core / sal / OFRpcTaskContext.java
index ed59fe922221a3274644a0737183d00eb9fe713d..d2d196488795c367e574b1fa7be7ff08e97a2219 100644 (file)
@@ -10,9 +10,9 @@ package org.opendaylight.openflowplugin.openflow.md.core.sal;
 import java.util.concurrent.TimeUnit;
 
 import org.opendaylight.controller.sal.binding.api.NotificationProviderService;
-import org.opendaylight.openflowplugin.openflow.md.core.session.IMessageDispatchService;
-import org.opendaylight.openflowplugin.openflow.md.core.session.SessionContext;
-import org.opendaylight.openflowplugin.openflow.md.queue.MessageSpy;
+import org.opendaylight.openflowplugin.api.openflow.md.core.session.IMessageDispatchService;
+import org.opendaylight.openflowplugin.api.openflow.md.core.session.SessionContext;
+import org.opendaylight.openflowplugin.api.openflow.statistics.MessageSpy;
 import org.opendaylight.yangtools.yang.binding.DataContainer;
 
 import com.google.common.util.concurrent.ListeningExecutorService;
@@ -92,7 +92,7 @@ public class OFRpcTaskContext {
         this.maxTimeoutUnit = maxTimeoutUnit;
     }
     /**
-     * @param rpcPool
+     * @param rpcPool executor service pool for rpc
      */
     public void setRpcPool(ListeningExecutorService rpcPool) {
         this.rpcPool = rpcPool;
@@ -106,7 +106,7 @@ public class OFRpcTaskContext {
     }
     
     /**
-     * @param messageSpy
+     * @param messageSpy the message spy
      */
     public void setMessageSpy(MessageSpy<DataContainer> messageSpy) {
         this.messageSpy = messageSpy;