Improve cleanup after device disconnected event
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / device / handlers / DeviceLifecycleSupervisor.java
index 9e818a65c502b3de46b98fb99c1c4b6f9c6fce18..a537b3edb5ade606e2ce138b9cc010f06becd619 100644 (file)
@@ -15,7 +15,7 @@ package org.opendaylight.openflowplugin.api.openflow.device.handlers;
  * Interface has to implement all relevant manager to correctly handling
  * device initialization and termination phase. Methods are used for order
  * handlers in initialization/termination phase. Ordering is easily changed
- * programicaly by definition.
+ * by definition.
  *
  */
 public interface DeviceLifecycleSupervisor {
@@ -24,7 +24,7 @@ public interface DeviceLifecycleSupervisor {
      * Method sets relevant {@link DeviceInitializationPhaseHandler} for building
      * handler's chain for new Device initial phase.
      *
-     * @param handler
+     * @param handler initialization phase handler
      */
     void setDeviceInitializationPhaseHandler(DeviceInitializationPhaseHandler handler);
 
@@ -32,7 +32,7 @@ public interface DeviceLifecycleSupervisor {
      * Method sets relevant {@link DeviceInitializationPhaseHandler} for annihilating
      * handler's chain for dead Device termination phase.
      *
-     * @param handler
+     * @param handler termination phase handler
      */
     void setDeviceTerminationPhaseHandler(DeviceTerminationPhaseHandler handler);
 }