Add get configuration function to be able to access the openflow connection config...
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / core / SwitchConnectionProviderImpl.java
index f5a39eabda64408b2d339d56b62614896944a259..aa79e6a361b48384fda80819dcf4fb402a376879 100644 (file)
@@ -277,4 +277,9 @@ public class SwitchConnectionProviderImpl implements SwitchConnectionProvider, C
         connectionInitializer.initiateConnection(host, port);
     }
 
+    @Override
+    public ConnectionConfiguration getConfiguration() {
+        return this.connConfig;
+    }
+
 }