|
From: Dave B. <bla...@us...> - 2012-03-02 21:22:17
|
Update of /cvsroot/sblim/jsr48-client/src/javax/wbem/client
In directory vz-cvs-3.sog:/tmp/cvs-serv16103/src/javax/wbem/client
Modified Files:
Tag: Experimental
WBEMClientConstants.java
Log Message:
3496355 - JSR48 1.0.0: add new WBEMClientConstants
Index: WBEMClientConstants.java
===================================================================
RCS file: /cvsroot/sblim/jsr48-client/src/javax/wbem/client/WBEMClientConstants.java,v
retrieving revision 1.1.2.5
retrieving revision 1.1.2.6
diff -u -d -r1.1.2.5 -r1.1.2.6
--- WBEMClientConstants.java 2 Mar 2012 17:58:10 -0000 1.1.2.5
+++ WBEMClientConstants.java 2 Mar 2012 21:22:14 -0000 1.1.2.6
@@ -18,6 +18,7 @@
* 2930341 2010-01-12 blaschke-oss Sync up WBEMClientConstants with JSR48 1.0.0
* 2959264 2010-02-25 blaschke-oss Sync up javax.client.* javadoc with JSR48 1.0.0
* 3496301 2012-03-02 blaschke-oss Sync up javax.* javadoc with JSR48 1.0.0 Final
+ * 3496355 2012-03-02 blaschke-oss JSR48 1.0.0: add new WBEMClientConstants
*/
package javax.wbem.client;
@@ -32,6 +33,36 @@
public class WBEMClientConstants {
/**
+ * Use this property to set the list of ciphers the client will support.
+ * Setting this value to null will use the default set of ciphers provided
+ * by the version of Java being used. Optional.
+ */
+ public static final String PROP_CLIENT_CIPHERS = "javax.wbem.client.ciphers";
+
+ /**
+ * This property along with the PROP_CLIENT_KEYSTORE_PASSWORD and
+ * PROP_CLIENT_TRUSTSTORE are used to configure mutual authentication. This
+ * property is used to provide the filename of the keystore. The path can be
+ * relative or full. Optional.
+ */
+ public static final String PROP_CLIENT_KEYSTORE = "javax.wbem.client.keyStore";
+
+ /**
+ * This property along with the PROP_CLIENT_KEYSTORE and
+ * PROP_CLIENT_TRUSTSTORE are used to configure mutual authentication. This
+ * property is used to provide the password of the keystore. Optional.
+ */
+ public static final String PROP_CLIENT_KEYSTORE_PASSWORD = "javax.wbem.client.keyStorePassword";
+
+ /**
+ * This property along with the PROP_CLIENT_KEYSTORE and
+ * PROP_CLIENT_KEYSTORE_PASSWORD are used to configure mutual
+ * authentication. This property is used to provide the filename of the
+ * truststore. The path can be relative or full. Optional.
+ */
+ public static final String PROP_CLIENT_TRUSTSTORE = "javax.wbem.client.trustStore";
+
+ /**
* Set this property to "1" to enable logging to the console. Set to "0" to
* disable. The default is 0.
*/
|