Package | Description |
---|---|
javax.cim |
Provides classes and interfaces for handling the CIM (Common Information Model) Object Model and CIM Data Types as defined in the CIM Infrastructure Specification.
|
javax.wbem |
Provides classes and interfaces that are common across all WBEM APIs.
|
javax.wbem.client |
Provides classes and interfaces for writing WBEM Clients.
|
javax.wbem.listener |
Provides classes and interfaces for writing WBEM Listeners.
|
org.sblim.cimclient.internal.cimxml |
Internal cim-xml DOM parser & builder implementation.
|
org.sblim.cimclient.internal.cimxml.sax.node |
Internal implementation of the SAX parser for cim-xml.
|
org.sblim.cimclient.internal.util |
Internal utility classes, such as constants, defaults, configuration and others.
|
org.sblim.cimclient.internal.wbem |
Internal implemenation of the interfaces from the javax.wbem package.
|
org.sblim.cimclient.internal.wbem.indications |
Internal implemenation of the indication processing.
|
org.sblim.cimclient.internal.wbem.operations |
Internal implemenation of WBEM batch operations.
|
Modifier and Type | Method and Description |
---|---|
CIMInstance |
CIMInstance.deriveInstance(CIMObjectPath pPath)
Returns a CIMInstance with the updated
CIMObjectPath . |
CIMInstance |
CIMInstance.deriveInstance(CIMProperty<?>[] pPropA)
Returns a
CIMInstance with the updated values for the
properties in pPropA . |
CIMInstance |
CIMInstance.filterProperties(boolean pLocalOnly,
boolean pIncludeClassOrigin,
String[] pPropertyList)
This method returns a new
CIMInstance with properties
filtered according to the input parameters. |
CIMInstance |
CIMClass.newInstance()
Returns a new CIM instance initialized with the default CIM properties,
values and name of this CIM class.
|
Modifier and Type | Method and Description |
---|---|
CIMInstance[] |
WBEMException.getCIMErrors()
Get the CIM Error Instances.
|
Constructor and Description |
---|
WBEMException(int pID,
String pMessage,
CIMInstance[] pErrors)
Constructs a new exception using the specified ID, detailed message and
CIM_Error instances.
|
WBEMException(int pID,
String pMessage,
CIMInstance[] pErrors,
Throwable pCause)
Constructs a new exception using the specified ID, detailed message,
CIM_Error instances and cause.
|
Modifier and Type | Method and Description |
---|---|
CIMInstance |
WBEMClient.getInstance(CIMObjectPath pName,
boolean pPropagated,
boolean pIncludeClassOrigin,
String[] pPropertyList)
Get a
CIMInstance . |
Modifier and Type | Method and Description |
---|---|
CloseableIterator<CIMInstance> |
WBEMClient.associatorInstances(CIMObjectPath pObjectName,
String pAssociationClass,
String pResultClass,
String pRole,
String pResultRole,
boolean pIncludeClassOrigin,
String[] pPropertyList)
Enumerates CIMInstances that are associated to a specified source CIM
Object.
|
EnumerateResponse<CIMInstance> |
WBEMClient.associators(CIMObjectPath instancePath,
String associationClass,
String resultClass,
String role,
String resultRole,
boolean includeClassOrigin,
String[] propertyList,
String filterQueryLanguage,
String filterQuery,
UnsignedInteger32 timeout,
boolean continueOnError,
UnsignedInteger32 maxObjects)
associators will start an enumeration session for traversing associations
starting from the instance defined in the instancePath parameter using
any specified filtering criteria and return zero or more CIMInstance
objects.
|
CloseableIterator<CIMInstance> |
WBEMClient.enumerateInstances(CIMObjectPath pPath,
boolean pDeep,
boolean pPropagated,
boolean pIncludeClassOrigin,
String[] pPropertyList)
Enumerate the instances of a class.
|
EnumerateResponse<CIMInstance> |
WBEMClient.enumerateInstances(CIMObjectPath classPath,
boolean deepInheritance,
boolean includeClassOrigin,
String[] propertyList,
String filterQueryLanguage,
String filterQuery,
UnsignedInteger32 timeout,
boolean continueOnError,
UnsignedInteger32 maxObjects)
enumerateInstances will enumerate the instances of the specified class in
classPath and return zero or more CIMInstances.
|
CloseableIterator<CIMInstance> |
WBEMClient.execQuery(CIMObjectPath pPath,
String pQuery,
String pQueryLanguage)
ExecQuery will execute a query to retrieve objects.
|
EnumerateResponse<CIMInstance> |
WBEMClient.execQueryInstances(CIMObjectPath pObjectName,
String filterQuery,
String filterQueryLanguage,
Boolean returnQueryResultClass,
UnsignedInteger32 timeout,
Boolean continueOnError,
UnsignedInteger32 maxObjectCount,
CIMClass queryResultClass)
execQueryInstances will execute a query to retrieve instances.
|
EnumerateResponse<CIMInstance> |
WBEMClient.getInstances(CIMObjectPath path,
String context,
UnsignedInteger32 maxObjects)
getInstances will get the instances from an enumeration session started
by execQueryInstances().
|
EnumerateResponse<CIMInstance> |
WBEMClient.getInstancesWithPath(CIMObjectPath path,
String context,
UnsignedInteger32 maxObjects)
getInstancesWithPath will use the enumeration context provided to get the
next set of instances for the enumeration session.
|
CloseableIterator<CIMInstance> |
WBEMClient.referenceInstances(CIMObjectPath pObjectName,
String pResultClass,
String pRole,
boolean pIncludeClassOrigin,
String[] pPropertyList)
Enumerates the Association instances that refer to a specified source CIM
Instance.
|
EnumerateResponse<CIMInstance> |
WBEMClient.references(CIMObjectPath instancePath,
String resultClass,
String role,
boolean includeClassOrigin,
String[] propertyList,
String filterQueryLanguage,
String filterQuery,
UnsignedInteger32 timeout,
boolean continueOnError,
UnsignedInteger32 maxObjects)
references will start an enumeration session for association instances
that have references that refer to the instance defined in the
instancePath parameter and return zero or more CIMInstance objects.
|
Modifier and Type | Method and Description |
---|---|
CIMObjectPath |
WBEMClient.createInstance(CIMInstance pInstance)
Create a CIM Instance.
|
void |
WBEMClient.modifyInstance(CIMInstance ci,
String[] propertyList)
Modify some or all of the properties of the specified
CIMInstance . |
Modifier and Type | Method and Description |
---|---|
void |
IndicationListener.indicationOccured(String pIndicationURL,
CIMInstance pIndication)
Called when an indication has been received by the listener
|
Modifier and Type | Method and Description |
---|---|
static CIMInstance |
CIMXMLParserImpl.parseEXPPARAMVALUE(Element pExpParamValueE)
parseEXPPARAMVALUE
|
static CIMInstance |
CIMXMLParserImpl.parseINSTANCE(Element pInstanceE)
parseINSTANCE
|
static CIMInstance |
CIMXMLParserImpl.parseINSTANCE(Element pInstanceE,
CIMObjectPath pObjPath)
parseINSTANCE
|
static CIMInstance |
CIMXMLParserImpl.parseVALUEINSTANCEWITHPATH(Element pValueNamedInstanceE)
parseVALUEINSTANCEWITHPATH
|
static CIMInstance |
CIMXMLParserImpl.parseVALUENAMEDINSTANCE(Element pValueNamedInstanceE)
parseVALUENAMEDINSTANCE
|
Modifier and Type | Method and Description |
---|---|
Element |
CIMClientXML_HelperImpl.createInstance_request(Document pDoc,
CIMObjectPath pName,
CIMInstance pInstance)
createInstance_request
|
static Element |
CIMXMLBuilderImpl.createINSTANCE(Document pDoc,
Element pParentE,
CIMInstance pInstance)
createINSTANCE
|
static Element |
CIMXMLBuilderImpl.createIRETURNVALUE_ENUMERATE_INSTANCE(Document pDoc,
Element pParentE,
CIMInstance[] pResultSet)
createIRETURNVALUE_ENUMERATE_INSTANCE
|
static Element |
CIMXMLBuilderImpl.createIRETURNVALUE_GETINSTANCE(Document pDoc,
Element pParentE,
CIMInstance pInst)
createIRETURNVALUE_GETINSTANCE
|
static Element |
CIMXMLBuilderImpl.createVALUENAMEDINSTANCE(Document pDoc,
Element pParentE,
CIMInstance pInst)
createVALUENAMEDINSTANCE
|
static Element |
CIMXMLBuilderImpl.createVALUENAMEDINSTANCE(Document pDoc,
Element pParentE,
CIMObjectPath pPath,
CIMInstance pInst)
createVALUENAMEDINSTANCE
|
static Element |
CIMClientXML_HelperImpl.enumerateInstances_response(Document pDoc,
CIMInstance[] pInstA)
enumerateInstances_response
|
Element |
CIMClientXML_HelperImpl.setInstance_request(Document pDoc,
CIMObjectPath pPath,
CIMInstance pInstance,
boolean pIncludeQualifiers,
String[] pPropertyList)
setInstance_request
|
Modifier and Type | Method and Description |
---|---|
CIMInstance |
InstanceNode.getCIMInstance()
getCIMInstance
|
CIMInstance |
InstanceNode.getCIMInstance(CIMObjectPath pObjPath)
getCIMInstance
|
Modifier and Type | Method and Description |
---|---|
static String |
MOF.instanceDeclaration(CIMInstance pInst,
String pInd)
instanceDeclaration = [ qualifierList ] INSTANCE OF className [ alias ]
"{" 1*valueInitializer "}" ";"
|
Modifier and Type | Method and Description |
---|---|
CIMInstance[] |
CIMError.getCIMInstances()
getCIMInstances
|
CIMInstance |
WBEMClientCIMXML.getInstance(CIMObjectPath pName,
boolean pPropagated,
boolean pIncludeClassOrigin,
String[] pPropertyList) |
Modifier and Type | Method and Description |
---|---|
CloseableIterator<CIMInstance> |
WBEMClientCIMXML.associatorInstances(CIMObjectPath pObjectName,
String pAssociationClass,
String pResultClass,
String pRole,
String pResultRole,
boolean pIncludeClassOrigin,
String[] pPropertyList) |
EnumerateResponse<CIMInstance> |
WBEMClientCIMXML.associators(CIMObjectPath pObjectName,
String pAssocClass,
String pResultClass,
String pRole,
String pResultRole,
boolean pIncludeClassOrigin,
String[] pPropertyList,
String pFilterQueryLanguage,
String pFilterQuery,
UnsignedInteger32 pTimeout,
boolean pContinueOnError,
UnsignedInteger32 pMaxObjects) |
CloseableIterator<CIMInstance> |
WBEMClientCIMXML.enumerateInstances(CIMObjectPath pPath,
boolean pDeep,
boolean pPropagated,
boolean pIncludeClassOrigin,
String[] pPropertyList) |
EnumerateResponse<CIMInstance> |
WBEMClientCIMXML.enumerateInstances(CIMObjectPath pObjectName,
boolean pDeepInheritance,
boolean pIncludeClassOrigin,
String[] pPropertyList,
String pFilterQueryLanguage,
String pFilterQuery,
UnsignedInteger32 pTimeout,
boolean pContinueOnError,
UnsignedInteger32 pMaxObjects) |
CloseableIterator<CIMInstance> |
WBEMClientCIMXML.execQuery(CIMObjectPath pPath,
String pQuery,
String pQueryLanguage) |
EnumerateResponse<CIMInstance> |
WBEMClientCIMXML.execQueryInstances(CIMObjectPath pObjectName,
String pFilterQuery,
String pFilterQueryLanguage,
Boolean pReturnQueryResultClass,
UnsignedInteger32 pTimeout,
Boolean pContinueOnError,
UnsignedInteger32 pMaxObjects,
CIMClass pQueryResultClass) |
EnumerateResponse<CIMInstance> |
WBEMClientCIMXML.getInstances(CIMObjectPath pObjectName,
String pContext,
UnsignedInteger32 pMaxObjects) |
EnumerateResponse<CIMInstance> |
WBEMClientCIMXML.getInstancesWithPath(CIMObjectPath pObjectName,
String pContext,
UnsignedInteger32 pMaxObjects) |
CloseableIterator<CIMInstance> |
WBEMClientCIMXML.referenceInstances(CIMObjectPath pObjectName,
String pResultClass,
String pRole,
boolean pIncludeClassOrigin,
String[] pPropertyList) |
EnumerateResponse<CIMInstance> |
WBEMClientCIMXML.references(CIMObjectPath pObjectName,
String pResultClass,
String pRole,
boolean pIncludeClassOrigin,
String[] pPropertyList,
String pFilterQueryLanguage,
String pFilterQuery,
UnsignedInteger32 pTimeout,
boolean pContinueOnError,
UnsignedInteger32 pMaxObjects) |
Modifier and Type | Method and Description |
---|---|
CIMObjectPath |
WBEMClientCIMXML.createInstance(CIMInstance pInstance) |
void |
WBEMClientCIMXML.modifyInstance(CIMInstance pInst,
String[] pPropertyList) |
Constructor and Description |
---|
CIMError(int pStatus,
String pMsg,
CIMInstance[] pInstances)
Ctor.
|
Modifier and Type | Field and Description |
---|---|
protected CIMInstance |
CIMEvent.iIndication |
Modifier and Type | Method and Description |
---|---|
CIMInstance |
CIMEvent.getIndication()
getIndication
|
Constructor and Description |
---|
CIMEvent(CIMInstance pIndication)
Ctor.
|
CIMEvent(CIMInstance pIndication,
String id)
Ctor.
|
CIMEvent(CIMInstance pIndication,
String pId,
InetAddress pInetAddress)
Constructor that takes the CIMInstance of the indication, the id as well
as the InetAddress of the remote machine.
|
Modifier and Type | Field and Description |
---|---|
protected CIMInstance |
CIMSetInstanceOp.iInstance |
protected CIMInstance |
CIMCreateInstanceOp.iInstance |
Modifier and Type | Method and Description |
---|---|
CIMInstance |
CIMSetInstanceOp.getInstance()
Returns instance
|
CIMInstance |
CIMCreateInstanceOp.getInstance()
Returns the instance
|
Constructor and Description |
---|
CIMCreateInstanceOp(CIMObjectPath pObjectName,
CIMInstance pInstance)
Ctor.
|
CIMSetInstanceOp(CIMObjectPath objectName,
CIMInstance instance,
boolean includeQualifiers,
String[] propertyList)
Ctor.
|
Copyright © 2005, 2009 IBM Corporation. All Rights Reserved.