BUG 2245 - Fixed Redundant Modifier
[openflowjava.git] / openflow-protocol-api / src / main / java / org / opendaylight / openflowjava / protocol / api / connection / ConnectionConfiguration.java
index 8b3447694391cddca13c10020bd90cc23dc69982..6a61b5857afa2b402c5d34233f5e8186d7e28d92 100644 (file)
@@ -6,7 +6,6 @@
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
 
-
 package org.opendaylight.openflowjava.protocol.api.connection;
 
 import java.net.InetAddress;
@@ -24,35 +23,35 @@ public interface ConnectionConfiguration {
     /**
      * @return address to bind, if null, all available interfaces will be used
      */
-    public InetAddress getAddress();
+    InetAddress getAddress();
     
     /**
      * @return port to bind
      */
-    public int getPort();
+    int getPort();
     
     /**
      * @return transport protocol to use
      */
-    public Object getTransferProtocol();
+    Object getTransferProtocol();
     
     /**
      * @return TLS configuration object
      */
-    public TlsConfiguration getTlsConfiguration();
+    TlsConfiguration getTlsConfiguration();
     
     /**
      * @return silence time (in milliseconds) - after this time {@link SwitchIdleEvent} message is sent upstream 
      */
-    public long getSwitchIdleTimeout();
+    long getSwitchIdleTimeout();
     
     /**
      * @return seed for {@link SSLEngine}
      */
-    public Object getSslContext();
+    Object getSslContext();
     
     /**
      * @return thread numbers for TcpHandler's eventloopGroups
      */
-    public ThreadConfiguration getThreadConfiguration();
+    ThreadConfiguration getThreadConfiguration();
 }
\ No newline at end of file