Cleanup switch certificate chain handling
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / configuration / ConfigurationProperty.java
index 26d680e6d51c672d466f38ffe55f9b079d95857c..4a5a58a563fd8e18f05403d30bd908611e7b7ecd 100644 (file)
@@ -23,6 +23,30 @@ public enum ConfigurationProperty {
      * Is statistics polling on property type.
      */
     IS_STATISTICS_POLLING_ON,
+    /**
+     * Is table statistics polling on property type.
+     */
+    IS_TABLE_STATISTICS_POLLING_ON,
+    /**
+     * Is flow statistics polling on property type.
+     */
+    IS_FLOW_STATISTICS_POLLING_ON,
+    /**
+     * Is group statistics polling on property type.
+     */
+    IS_GROUP_STATISTICS_POLLING_ON,
+    /**
+     * Is meter statistics polling on property type.
+     */
+    IS_METER_STATISTICS_POLLING_ON,
+    /**
+     * Is port statistics polling on property type.
+     */
+    IS_PORT_STATISTICS_POLLING_ON,
+    /**
+     * Is queue statistics polling on property type.
+     */
+    IS_QUEUE_STATISTICS_POLLING_ON,
     /**
      * Barrier count limit property type.
      */
@@ -83,7 +107,23 @@ public enum ConfigurationProperty {
     /**
      * Thread pool timeout property type.
      */
-    THREAD_POOL_TIMEOUT;
+    THREAD_POOL_TIMEOUT,
+    /**
+     * Enable or disable equal role functionality.
+     */
+    ENABLE_EQUAL_ROLE,
+    /**
+     * Device connection rate limit property type.
+     */
+    DEVICE_CONNECTION_RATE_LIMIT_PER_MIN,
+    /**
+     * Device connection hold time property type.
+     */
+    DEVICE_CONNECTION_HOLD_TIME_IN_SECONDS,
+    /**
+     * Delay for Device removal from Operational DataStore.
+     */
+    DEVICE_DATASTORE_REMOVAL_DELAY;
 
     private static final Map<String, ConfigurationProperty> KEY_VALUE_MAP;