00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00029
00030
00031
00032 #ifndef Pegasus_CIMAssociationProvider_h
00033 #define Pegasus_CIMAssociationProvider_h
00034
00035 #include <Pegasus/Common/Config.h>
00036 #include <Pegasus/Provider/CIMProvider.h>
00037
00038 #include <Pegasus/Common/Array.h>
00039 #include <Pegasus/Common/String.h>
00040 #include <Pegasus/Common/CIMName.h>
00041 #include <Pegasus/Common/CIMPropertyList.h>
00042 #include <Pegasus/Common/CIMObjectPath.h>
00043 #include <Pegasus/Common/CIMInstance.h>
00044 #include <Pegasus/Provider/Linkage.h>
00045
00046 PEGASUS_NAMESPACE_BEGIN
00047
00066 class PEGASUS_PROVIDER_LINKAGE CIMAssociationProvider :
00067 public virtual CIMProvider
00068 {
00069 public:
00073 CIMAssociationProvider();
00074
00078 virtual ~CIMAssociationProvider();
00079
00138 virtual void associators(
00139 const OperationContext & context,
00140 const CIMObjectPath & objectName,
00141 const CIMName & associationClass,
00142 const CIMName & resultClass,
00143 const String & role,
00144 const String & resultRole,
00145 const Boolean includeQualifiers,
00146 const Boolean includeClassOrigin,
00147 const CIMPropertyList & propertyList,
00148 ObjectResponseHandler & handler) = 0;
00149
00194 virtual void associatorNames(
00195 const OperationContext & context,
00196 const CIMObjectPath & objectName,
00197 const CIMName & associationClass,
00198 const CIMName & resultClass,
00199 const String & role,
00200 const String & resultRole,
00201 ObjectPathResponseHandler & handler) = 0;
00202
00247 virtual void references(
00248 const OperationContext & context,
00249 const CIMObjectPath & objectName,
00250 const CIMName & resultClass,
00251 const String & role,
00252 const Boolean includeQualifiers,
00253 const Boolean includeClassOrigin,
00254 const CIMPropertyList & propertyList,
00255 ObjectResponseHandler & handler) = 0;
00256
00287 virtual void referenceNames(
00288 const OperationContext & context,
00289 const CIMObjectPath & objectName,
00290 const CIMName & resultClass,
00291 const String & role,
00292 ObjectPathResponseHandler & handler) = 0;
00293 };
00294
00295 PEGASUS_NAMESPACE_END
00296
00297 #endif