Fix various small warnings
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / statistics / StatisticsManager.java
index bf75a10fff09aa6cedd995d2e80601f7f70a78a0..8c529f1c9ed0dbd3f619a3befc2d143b7b07eb4a 100644 (file)
@@ -8,12 +8,13 @@
 
 package org.opendaylight.openflowplugin.api.openflow.statistics;
 
-import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceContextReadyHandler;
+import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceContextClosedHandler;
+import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceInitializationPhaseHandler;
+import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceInitializator;
 
 /**
  * Created by Martin Bobak <mbobak@cisco.com> on 26.2.2015.
  */
-public interface StatisticsManager extends DeviceContextReadyHandler {
-
+public interface StatisticsManager extends DeviceInitializator, DeviceInitializationPhaseHandler, DeviceContextClosedHandler {
 
 }