You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2010/01/15 20:22:55 UTC

svn commit: r899771 - /cxf/trunk/rt/transports/http/src/main/java/org/apache/cxf/configuration/jsse/spring/TLSServerParametersConfig.java

Author: dkulp
Date: Fri Jan 15 19:22:55 2010
New Revision: 899771

URL: http://svn.apache.org/viewvc?rev=899771&view=rev
Log:
[CXF-2618] On the server side as well

Modified:
    cxf/trunk/rt/transports/http/src/main/java/org/apache/cxf/configuration/jsse/spring/TLSServerParametersConfig.java

Modified: cxf/trunk/rt/transports/http/src/main/java/org/apache/cxf/configuration/jsse/spring/TLSServerParametersConfig.java
URL: http://svn.apache.org/viewvc/cxf/trunk/rt/transports/http/src/main/java/org/apache/cxf/configuration/jsse/spring/TLSServerParametersConfig.java?rev=899771&r1=899770&r2=899771&view=diff
==============================================================================
--- cxf/trunk/rt/transports/http/src/main/java/org/apache/cxf/configuration/jsse/spring/TLSServerParametersConfig.java (original)
+++ cxf/trunk/rt/transports/http/src/main/java/org/apache/cxf/configuration/jsse/spring/TLSServerParametersConfig.java Fri Jan 15 19:22:55 2010
@@ -35,7 +35,9 @@
     public TLSServerParametersConfig(TLSServerParametersType params) 
         throws GeneralSecurityException,
                IOException {
-        
+        if (params.isSetSecureSocketProtocol()) {
+            this.setSecureSocketProtocol(params.getSecureSocketProtocol());
+        }
         if (params.isSetCipherSuitesFilter()) {
             this.setCipherSuitesFilter(params.getCipherSuitesFilter());
         }