|
#include <cmpift.h>
|
int | ftVersion |
|
CMPIStatus(* | release )(CMPIObjectPath *op) |
|
CMPIObjectPath *(* | clone )(const CMPIObjectPath *op, CMPIStatus *rc) |
|
CMPIStatus(* | setNameSpace )(CMPIObjectPath *op, const char *ns) |
|
CMPIString *(* | getNameSpace )(const CMPIObjectPath *op, CMPIStatus *rc) |
|
CMPIStatus(* | setHostname )(CMPIObjectPath *op, const char *hn) |
|
CMPIString *(* | getHostname )(const CMPIObjectPath *op, CMPIStatus *rc) |
|
CMPIStatus(* | setClassName )(CMPIObjectPath *op, const char *cn) |
|
CMPIString *(* | getClassName )(const CMPIObjectPath *op, CMPIStatus *rc) |
|
CMPIStatus(* | addKey )(CMPIObjectPath *op, const char *name, const CMPIValue *value, const CMPIType type) |
|
CMPIData(* | getKey )(const CMPIObjectPath *op, const char *name, CMPIStatus *rc) |
|
CMPIData(* | getKeyAt )(const CMPIObjectPath *op, CMPICount index, CMPIString **name, CMPIStatus *rc) |
|
CMPICount(* | getKeyCount )(const CMPIObjectPath *op, CMPIStatus *rc) |
|
CMPIStatus(* | setNameSpaceFromObjectPath )(CMPIObjectPath *op, const CMPIObjectPath *src) |
|
CMPIStatus(* | setHostAndNameSpaceFromObjectPath )(CMPIObjectPath *op, const CMPIObjectPath *src) |
|
CMPIData(* | getClassQualifier )(const CMPIObjectPath *op, const char *qName, CMPIStatus *rc) |
|
CMPIData(* | getPropertyQualifier )(const CMPIObjectPath *op, const char *pName, const char *qName, CMPIStatus *rc) |
|
CMPIData(* | getMethodQualifier )(const CMPIObjectPath *op, const char *methodName, const char *qName, CMPIStatus *rc) |
|
CMPIData(* | getParameterQualifier )(const CMPIObjectPath *op, const char *mName, const char *pName, const char *qName, CMPIStatus *rc) |
|
CMPIString *(* | toString )(const CMPIObjectPath *op, CMPIStatus *rc) |
|
This structure is a table of pointers providing access to ObjectPath support sevices.
◆ addKey
Adds/replaces a named key property. - Parameters
-
op | ObjectPath this pointer. |
name | Key property name. |
value | Address of value structure. |
type | Value type. |
- Returns
- Service return status.
◆ clone
Create an independent copy of this ObjectPath object. The resulting object must be released explicitly. - Parameters
-
op | ObjectPath this pointer. |
rc | Output: Service return status (suppressed when NULL). |
- Returns
- Pointer to copied ObjectPath object.
◆ ftVersion
int _CMPIObjectPathFT::ftVersion |
◆ getClassName
Get the classname component. - Parameters
-
op | ObjectPath this pointer. |
rc | Output: Service return status (suppressed when NULL). |
- Returns
- The classname component.
◆ getClassQualifier
Get class qualifier value. - Parameters
-
op | ObjectPath this pointer. |
qName | Qualifier name. |
rc | Output: Service return status (suppressed when NULL). |
- Returns
- Qualifier value.
◆ getHostname
Get the hostname component. - Parameters
-
op | ObjectPath this pointer. |
rc | Output: Service return status (suppressed when NULL). |
- Returns
- The hostname component.
◆ getKey
Gets a named key property value. - Parameters
-
op | ObjectPath this pointer. |
name | Key property name. |
rc | Output: Service return status (suppressed when NULL). |
- Returns
- Entry value.
◆ getKeyAt
Gets a key property value defined by its index. - Parameters
-
op | ObjectPath this pointer. |
index | Position in the internal Data array. |
name | Output: Returned property name (suppressed when NULL). |
rc | Output: Service return status (suppressed when NULL). |
- Returns
- Data value.
◆ getKeyCount
Gets the number of key properties contained in this ObjectPath. - Parameters
-
op | ObjectPath this pointer. |
rc | Output: Service return status (suppressed when NULL). |
- Returns
- Number of properties.
◆ getMethodQualifier
Get method qualifier value. - Parameters
-
op | ObjectPath this pointer. |
mName | Method name. |
qName | Qualifier name. |
rc | Output: Service return status (suppressed when NULL). |
- Returns
- Qualifier value.
◆ getNameSpace
Get the namespace component. - Parameters
-
op | ObjectPath this pointer. |
rc | Output: Service return status (suppressed when NULL). |
- Returns
- The namespace component.
◆ getParameterQualifier
Get method parameter quailifier value. - Parameters
-
op | ObjectPath this pointer. |
mName | Method name. |
pName | Parameter name. |
qName | Qualifier name. |
rc | Output: Service return status (suppressed when NULL). |
- Returns
- Qualifier value.
◆ getPropertyQualifier
Get property qualifier value. - Parameters
-
op | ObjectPath this pointer. |
pName | Property name. |
qName | Qualifier name. |
rc | Output: Service return status (suppressed when NULL). |
- Returns
- Qualifier value.
◆ release
The ObjectPath object will not be used any further and may be freed by CMPI run time system. - Parameters
-
op | ObjectPath this pointer. |
- Returns
- Service return status.
◆ setClassName
Set/replace the classname component. - Parameters
-
op | ObjectPath this pointer. |
cn | The hostname string |
- Returns
- Service return status.
◆ setHostAndNameSpaceFromObjectPath
Set/replace hostname, namespace and classname components from < src>. - Parameters
-
op | ObjectPath this pointer. |
src | Source input. |
- Returns
- Service return status.
◆ setHostname
Set/replace the hostname component. - Parameters
-
op | ObjectPath this pointer. |
hn | The hostname string |
- Returns
- Service return status.
◆ setNameSpace
Set/replace the namespace component. - Parameters
-
op | ObjectPath this pointer. |
ns | The namespace string |
- Returns
- Service return status.
◆ setNameSpaceFromObjectPath
Set/replace namespace and classname components from <src>. - Parameters
-
op | ObjectPath this pointer. |
src | Source input. |
- Returns
- Service return status.
◆ toString
Generates a well formed string representation of this ObjectPath - Parameters
-
op | ObjectPath this pointer. |
rc | Output: Service return status (suppressed when NULL). |
- Returns
- String representation.
The documentation for this struct was generated from the following file:
- /root/rpmbuild/BUILD/pegasus/src/Pegasus/Provider/CMPI/cmpift.h
|