fix changes in openflowjava interface TlsConfiguration. 55/35655/1
authormelserngawy <melserngawy@inocybe.com>
Wed, 2 Mar 2016 22:28:26 +0000 (17:28 -0500)
committermelserngawy <melserngawy@inocybe.com>
Wed, 2 Mar 2016 22:28:26 +0000 (17:28 -0500)
Change-Id: I718103f6f7e401cbb3bfc89de30a813ffb1c4761
Signed-off-by: melserngawy <melserngawy@inocybe.com>
aaa-cert/src/main/java/org/opendaylight/aaa/cert/impl/TlsConfigurationImp.java

index 7e93ab322c82f2911c751737d2ef2dd98048c564..91206ef26b4c7f4d0022c1f1c238356a48f08a12 100644 (file)
@@ -8,6 +8,8 @@
 
 package org.opendaylight.aaa.cert.impl;
 
+import java.util.List;
+
 import org.opendaylight.openflowjava.protocol.api.connection.TlsConfiguration;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.config.rev140630.KeystoreType;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.config.rev140630.PathType;
@@ -48,6 +50,12 @@ public class TlsConfigurationImp implements TlsConfiguration{
         return certPwd;
     }
 
+    @Override
+    public List<String> getCipherSuites() {
+        // TODO Auto-generated method stub
+        return null;
+    }
+
     @Override
     public String getKeystorePassword() {
         return tlsKeyStorePwd;