Fix checkstyle violations in openflow-protocol-api
[openflowplugin.git] / openflowjava / openflow-protocol-api / src / main / java / org / opendaylight / openflowjava / protocol / api / connection / ThreadConfiguration.java
index e3d1fb66c40c1cdaf36404b7140f79443bb5696f..b0f311c750c2200daddb96a3dfb04c88a288e1cb 100644 (file)
@@ -9,18 +9,23 @@
 package org.opendaylight.openflowjava.protocol.api.connection;
 
 /**
- * @author michal.polkorab
+ * Threading configuration.
  *
+ * @author michal.polkorab
  */
 public interface ThreadConfiguration {
 
     /**
-     * @return desired number of workerThreads processing the Openflow I/O
+     * Returns the desired number of Openflow I/O worker threads.
+     *
+     * @return desired number of worker threads processing the Openflow I/O
      */
     int getWorkerThreadCount();
 
     /**
-     * @return desired number of bossThreads registering incomming Openflow connections
+     * Returns the desired number of incoming Openflow connection threads.
+     *
+     * @return desired number of bossThreads registering incoming Openflow connections
      */
     int getBossThreadCount();
 }