Fix checkstyle
[openflowjava.git] / openflow-protocol-api / src / main / java / org / opendaylight / openflowjava / protocol / api / connection / ConnectionConfiguration.java
index cfb042938e78823f5d80d44b6dd7ff909734b007..310e0a5ae93852a3e3ce53c03f4cc138d6f5947f 100644 (file)
@@ -5,17 +5,12 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.openflowjava.protocol.api.connection;
 
 import java.net.InetAddress;
 
-import javax.net.ssl.SSLEngine;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.system.rev130927.SwitchIdleEvent;
-
 /**
  * @author mirehak
- *
  */
 public interface ConnectionConfiguration {
 
@@ -40,12 +35,14 @@ public interface ConnectionConfiguration {
     TlsConfiguration getTlsConfiguration();
 
     /**
-     * @return silence time (in milliseconds) - after this time {@link SwitchIdleEvent} message is sent upstream
+     * @return silence time (in milliseconds) - after this time
+     *         {@link org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.system.rev130927.SwitchIdleEvent}
+     *         message is sent upstream
      */
     long getSwitchIdleTimeout();
 
     /**
-     * @return seed for {@link SSLEngine}
+     * @return seed for {@link javax.net.ssl.SSLEngine}
      */
     Object getSslContext();
 
@@ -53,4 +50,4 @@ public interface ConnectionConfiguration {
      * @return thread numbers for TcpHandler's eventloopGroups
      */
     ThreadConfiguration getThreadConfiguration();
-}
\ No newline at end of file
+}