Bug 5377: Support configuring cipher suites to use for SSLEngine
[openflowjava.git] / openflow-protocol-api / src / main / java / org / opendaylight / openflowjava / protocol / api / connection / TlsConfiguration.java
index 6676dd02426796c316b17242c9f9a633a3b25e14..f5a71a8c2c4113c1c8c967dba0fe5d29a069a8f0 100644 (file)
@@ -8,6 +8,8 @@
 
 package org.opendaylight.openflowjava.protocol.api.connection;
 
+import java.util.List;
+
 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.config.rev140630.KeystoreType;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.config.rev140630.PathType;
 
@@ -62,4 +64,9 @@ public interface TlsConfiguration {
      * @return password protecting specified truststore
      */
     String getTruststorePassword();
+
+    /**
+     * @return list of cipher suites for TLS connection
+     */
+    List<String> getCipherSuites();
 }