-
Classes Class Description org.sblim.wbem.util.GlobalProperties Use the global properties instance offered by the SessionProperties class instead
-
Methods Method Description org.sblim.wbem.cim.CIMClass.setIsKeyed(boolean) this method may lead to confusion. Instead of this method application are encourage to remove/add the Key qualifier manually.org.sblim.wbem.cim.CIMInstance.getName() instances don't have names. However current implementation provides access to the class name of the instance.org.sblim.wbem.cim.CIMMethod.setSize(int) the current method has been deprecated because the size of the data type is unmutable. To change the size of the return type, a new data type must be specified by invoking the setType methodorg.sblim.wbem.cim.CIMNameSpace.parse(String) The CIMNameSpace(String) constructor must be used instead of this method.org.sblim.wbem.cim.CIMObjectPath.parse(String) org.sblim.wbem.cim.CIMParameter.setSize(int) Using this method can produce inconsitency and break invariantsorg.sblim.wbem.cim.CIMProperty.setSize(int) the size of the property is bounded to the CIMDataType, which is unmutable. Applications are encourage to specify the CIMDataType with the appopiated size.org.sblim.wbem.cim.CIMValue.size() use getSize instead of size()org.sblim.wbem.client.CIMClient.invokeMethod(CIMObjectPath, String, CIMArgument[], CIMArgument[]) It is not recommended to use this method, since the number of output parameters may be extended by the CIM provider in the future. Instead, useCIMClient.invokeMethod(CIMObjectPath, String, Vector, Vector)
.org.sblim.wbem.client.CIMClientFactory.getClient(CIMNameSpace, Principal, Object, String) Use getClient(CIMNameSpace, Principal, Object, String, SessionProperties) insteadorg.sblim.wbem.client.operations.CIMGetClassOp.getPropertyLis() Typo in method name. Use getPropertyList() insteadorg.sblim.wbem.util.Benchmark.resetTime() org.sblim.wbem.util.SessionProperties.getTruststore_password() For security reasons instead of this method, char[] getTruststorePassword() should be used.org.sblim.wbem.util.SessionProperties.isDebugHttpConnectionPool() This method is not used anywhere...org.sblim.wbem.util.SessionProperties.setDebugHttpConnectionPool(boolean) This method is never used at all...org.sblim.wbem.util.SessionProperties.setTruststore_password(String) For security reasons this method should not be used. Instead setTruststore_password(char[] newPassword) should be used.
-
Constructors Constructor Description org.sblim.wbem.cim.CIMDateTime(Calendar) this constructor was marked as deprecated because the dual nature of this object. This object was used to represent point in time, as well as intervals. Instead of this constructor applications are encourage to use corresponding objects such as CIMDateTime, or CIMSimpleDateTime.org.sblim.wbem.cim.CIMScope(int) use getScope(int) insteadorg.sblim.wbem.cim.CIMValue(Object) this constructor may lead to confusion when the data type of the specified argument can not be determined, such as the case of null arguments.org.sblim.wbem.client.PasswordCredential(String) for security reason this class has been deprecated. PasswordCredential(char[] password) constructor must be used instead of this constructor.