Merge "Bug 6110: Fixed bugs in statistics manager due to race condition." into stable...
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / OpenFlowPluginProvider.java
index a672ddb5a7049721a2dbbc6eb2267ed3518d51c9..63830b4951031968695145d24251193fad34f135 100644 (file)
@@ -42,6 +42,9 @@ public interface OpenFlowPluginProvider extends AutoCloseable, BindingService {
 
     void setNotificationPublishService(NotificationPublishService notificationPublishService);
 
+    void setClusteringSingletonServicesProvider(ClusterSingletonServiceProvider singletonServicesProvider);
+
+    void setEntityOwnershipServiceProvider(EntityOwnershipService entityOwnershipService);
     /**
      * Method initializes all DeviceManager, RpcManager and related contexts.
      */
@@ -77,7 +80,9 @@ public interface OpenFlowPluginProvider extends AutoCloseable, BindingService {
 
     void update(Map<String,Object> props);
 
-    void setClusteringSingletonServicesProvider(ClusterSingletonServiceProvider singletonServicesProvider);
-
     void setSkipTableFeatures(boolean skipTableFeatures);
+
+    void setBasicTimerDelay(long basicTimerDelay);
+
+    void setMaximumTimerDelay(long maximumTimerDelay);
 }