|
From: Dave B. <bla...@us...> - 2013-01-17 14:28:21
|
Update of /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv26483/src/org/sblim/cimclient Modified Files: Tag: Experimental WBEMConfigurationProperties.java Log Message: 3598613 different data type in cim instance and cim object path Index: WBEMConfigurationProperties.java =================================================================== RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/WBEMConfigurationProperties.java,v retrieving revision 1.17.2.34 retrieving revision 1.17.2.35 diff -u -d -r1.17.2.34 -r1.17.2.35 --- WBEMConfigurationProperties.java 2 Oct 2012 02:03:38 -0000 1.17.2.34 +++ WBEMConfigurationProperties.java 17 Jan 2013 14:28:15 -0000 1.17.2.35 @@ -1,5 +1,5 @@ /** - * (C) Copyright IBM Corp. 2006, 2012 + * (C) Copyright IBM Corp. 2006, 2013 * * THIS FILE IS PROVIDED UNDER THE TERMS OF THE ECLIPSE PUBLIC LICENSE * ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS FILE @@ -42,6 +42,7 @@ * 3524050 2012-06-06 blaschke-oss Improve WWW-Authenticate in HTTPClient.java * 3536399 2012-08-25 hellerda Add client/listener peer authentication properties * 3572993 2012-10-01 blaschke-oss parseDouble("2.2250738585072012e-308") DoS vulnerability + * 3598613 2013-01-11 blaschke-oss different data type in cim instance and cim object path */ package org.sblim.cimclient; @@ -955,4 +956,22 @@ * </pre> */ public static final String VERIFY_JAVA_LANG_DOUBLE_STRINGS = "sblim.wbem.verifyJavaLangDoubleStrings"; + + /** + * <pre> + * If set to true, numeric key data types in a CIMInstance's CIMObjectPath + * will be synchronized to match those of the corresponding keys within + * the CIMInstance's CIMProperty[]. If set to false, the numeric key data + * types will not be synchronized. + * + * Note: Only numeric key data types in CIMInstances from CIMOM responses + * are synchronized, application calls to the CIMInstance constructor are + * not affected. + * + * Type: Boolean + * Recognition: Startup + * Default: false + * </pre> + */ + public static final String SYNCHRONIZE_NUMERIC_KEY_DATA_TYPES = "sblim.wbem.synchronizeNumericKeyDataTypes"; } |