From: Dave B. <bla...@us...> - 2013-07-29 15:02:22
|
Update of /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/internal/util In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv4932/src/org/sblim/cimclient/internal/util Modified Files: WBEMConfiguration.java Log Message: 2647 Add two ssl protocol properties for http server and client Index: WBEMConfiguration.java =================================================================== RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/internal/util/WBEMConfiguration.java,v retrieving revision 1.51 retrieving revision 1.52 diff -u -d -r1.51 -r1.52 --- WBEMConfiguration.java 30 May 2013 13:10:35 -0000 1.51 +++ WBEMConfiguration.java 29 Jul 2013 15:02:18 -0000 1.52 @@ -49,6 +49,7 @@ * 2628 2013-03-26 blaschke-oss Limit size of LinkedList of CIMEvents to be dispatched * 2635 2013-05-16 blaschke-oss Slowloris DoS attack for CIM indication listener port * 2642 2013-05-21 blaschke-oss Seperate properties needed for cim client and listener to filter out ciphers + * 2647 2013-07-01 blaschke-oss Add two ssl protocol properties for http server and client */ package org.sblim.cimclient.internal.util; @@ -721,6 +722,24 @@ } /** + * getSslClientProtocol + * + * @return The SSL protocol for SSLContext.getInstance() for client + */ + public String getSslClientProtocol() { + return getProperty(WBEMConfigurationProperties.SSL_CLIENT_PROTOCOL, null); + } + + /** + * getSslListenerProtocol + * + * @return The SSL protocol for SSLContext.getInstance() for listener + */ + public String getSslListenerProtocol() { + return getProperty(WBEMConfigurationProperties.SSL_LISTENER_PROTOCOL, null); + } + + /** * Returns the certificate algorithm the key manager will use * * @return The key mangers algorithm |