Package org.sblim.wbem.client.operations
Class CIMOperation
- java.lang.Object
-
- org.sblim.wbem.client.operations.CIMOperation
-
- Direct Known Subclasses:
CIMAssociatorNamesOp
,CIMAssociatorsOp
,CIMCreateClassOp
,CIMCreateInstanceOp
,CIMCreateNameSpaceOp
,CIMCreateQualifierTypeOp
,CIMDeleteClassOp
,CIMDeleteInstanceOp
,CIMDeleteNameSpaceOp
,CIMDeleteQualifierTypeOp
,CIMEnumClassesOp
,CIMEnumClassNamesOp
,CIMEnumInstanceNamesOp
,CIMEnumInstancesOp
,CIMEnumNameSpaceOp
,CIMEnumQualifierTypesOp
,CIMExecQueryOp
,CIMInvokeMethodOp
,CIMReferenceNamesOp
,CIMReferencesOp
,CIMSetClassOp
,CIMSetInstanceOp
,CIMSetPropertyOp
,CIMSetQualifierTypeOp
,CIMSingleResultOperation
public abstract class CIMOperation extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
iMethodCall
protected CIMNameSpace
iNameSpace
protected CIMObjectPath
iObjectName
protected java.lang.Object
iResult
-
Constructor Summary
Constructors Constructor Description CIMOperation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getMethodCall()
Returns the method callCIMNameSpace
getNameSpace()
Returns the namespaceCIMObjectPath
getObjectName()
Returns the object namejava.lang.Object
getResult()
Returns the result of the operationboolean
isException()
Returns if an (uncaught) exception occurredvoid
setNameSpace(CIMNameSpace pNamespace)
Sets the namespacevoid
setResult(java.lang.Object pResult)
Sets the operation result
-
-
-
Field Detail
-
iObjectName
protected CIMObjectPath iObjectName
-
iNameSpace
protected CIMNameSpace iNameSpace
-
iMethodCall
protected java.lang.String iMethodCall
-
iResult
protected java.lang.Object iResult
-
-
Method Detail
-
getObjectName
public CIMObjectPath getObjectName()
Returns the object name- Returns:
- The object name
-
getNameSpace
public CIMNameSpace getNameSpace()
Returns the namespace- Returns:
- The namespace
-
setNameSpace
public void setNameSpace(CIMNameSpace pNamespace)
Sets the namespace- Parameters:
pNamespace
- The namespace
-
getMethodCall
public java.lang.String getMethodCall()
Returns the method call- Returns:
- The method call
-
isException
public boolean isException()
Returns if an (uncaught) exception occurred- Returns:
true
if an (uncaught) exception occurred,false
otherwise
-
getResult
public java.lang.Object getResult() throws CIMException
Returns the result of the operation- Returns:
- The result
- Throws:
CIMException
-
setResult
public void setResult(java.lang.Object pResult)
Sets the operation result- Parameters:
pResult
- The result
-
-