Allow to configure number of threads used by Netty's EventLoopGroups
[openflowjava.git] / openflow-protocol-impl / src / main / yang / openflow-switch-connection-provider-impl.yang
index 0abc830af6b48fb4f2f64145737fa98ab6a9e3da..dbc48866b02d1aed551d2382111d84122ed56939 100644 (file)
@@ -51,9 +51,17 @@ module openflow-switch-connection-provider-impl {
                     type of-config:keystore-type;
                 }
                 leaf keystore-path-type {
-                    description "keystore path type (classpath or path)";
+                    description "keystore path type (CLASSPATH or PATH)";
                     type of-config:path-type;
                 }
+                leaf keystore-password {
+                    description "password protecting keystore";
+                    type string;
+                }
+                leaf certificate-password {
+                    description "password protecting certificate";
+                    type string;
+                }
                 leaf truststore {
                     description "truststore location";
                     type string;
@@ -63,9 +71,21 @@ module openflow-switch-connection-provider-impl {
                     type of-config:keystore-type;
                 }
                 leaf truststore-path-type {
-                    description "truststore path type (classpath or path)";
+                    description "truststore path type (CLASSPATH or PATH)";
                     type of-config:path-type;
                 }
+                leaf truststore-password {
+                    description "password protecting truststore";
+                    type string;
+                }
+            }
+            container threads {
+                leaf boss-threads {
+                    type uint16;
+                }
+                leaf worker-threads {
+                    type uint16;
+                }
             }
         }
     }