(file) Return to InteropProvider.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / ControlProviders / InteropProvider

Diff for /pegasus/src/Pegasus/ControlProviders/InteropProvider/InteropProvider.cpp between version 1.5.2.3 and 1.5.2.4

version 1.5.2.3, 2004/02/03 22:48:36 version 1.5.2.4, 2004/02/05 16:28:45
Line 539 
Line 539 
     String SystemCreationClassName = System::getSystemCreationClassName ();     String SystemCreationClassName = System::getSystemCreationClassName ();
     if (SystemCreationClassName == String::EMPTY)     if (SystemCreationClassName == String::EMPTY)
     {     {
         // This in place because global is often Empty          //Attn: Get this globally. For now This in place because global is often Empty
         SystemCreationClassName = "CIM_ComputerSystem";         SystemCreationClassName = "CIM_ComputerSystem";
     }     }
  
Line 640 
Line 640 
     return(instance);     return(instance);
 } }
  
   /* build a single instance of the cimxmlcommunicationmechanism class
 CIMInstance _buildInstancCIMXMLCommunicationMechanism()     using the parameter provided as the name property
      @parm name String representing the name to be used for this object.
      @return CIMInstance of the class
   */
   CIMInstance _buildInstancCIMXMLCommunicationMechanism(const String& name)
 { {
     PEG_METHOD_ENTER(TRC_CONTROLPROVIDER,     PEG_METHOD_ENTER(TRC_CONTROLPROVIDER,
             "InteropProvider::_buildInstanceCIMXMLCommunicationMechanism()");             "InteropProvider::_buildInstanceCIMXMLCommunicationMechanism()");
Line 653 
Line 657 
     //CreationClassName     //CreationClassName
     instance.addProperty(     instance.addProperty(
         (CIMProperty(CIM_NAMESPACE_PROPERTY_CREATIONCLASSNAME,         (CIMProperty(CIM_NAMESPACE_PROPERTY_CREATIONCLASSNAME,
             CIM_OBJECTMANAGERCOMMUNICATIONMECHANISM_CLASSNAME.getString() )));              CIM_CIMXMLCOMMUNICATIONMECHANISM_CLASSNAME.getString() )));
  
     //Name, this CommunicationMechanism.     //Name, this CommunicationMechanism.
     String name = "PegasusCommunicationMechanism";  
     instance.addProperty(     instance.addProperty(
         (CIMProperty(CIM_NAMESPACE_PROPERTY_NAME,         (CIMProperty(CIM_NAMESPACE_PROPERTY_NAME,
                      name )));                      name )));
Line 1585 
Line 1588 
  
         if (classEnum == CIM_CIMXMLCOMMUNICATIONMECHANISM)         if (classEnum == CIM_CIMXMLCOMMUNICATIONMECHANISM)
         {         {
             CIMInstance instance = _buildInstancCIMXMLCommunicationMechanism();              CIMInstance instance = _buildInstancCIMXMLCommunicationMechanism("PegasusCIMXMLCommunications");
             handler.deliver(instance);             handler.deliver(instance);
             handler.complete();             handler.complete();
             PEG_METHOD_EXIT();             PEG_METHOD_EXIT();
Line 1711 
Line 1714 
  
         if (classEnum == CIM_CIMXMLCOMMUNICATIONMECHANISM)         if (classEnum == CIM_CIMXMLCOMMUNICATIONMECHANISM)
         {         {
             CIMInstance instance = _buildInstancCIMXMLCommunicationMechanism();              CIMInstance instance = _buildInstancCIMXMLCommunicationMechanism("PegasusCIMXMLCommunications");
             handler.deliver(instance);             handler.deliver(instance);
             handler.complete();             handler.complete();
             PEG_METHOD_EXIT();             PEG_METHOD_EXIT();
Line 1829 
Line 1832 
  
         if (classEnum == CIM_CIMXMLCOMMUNICATIONMECHANISM)         if (classEnum == CIM_CIMXMLCOMMUNICATIONMECHANISM)
         {         {
             CIMInstance instance = _buildInstancCIMXMLCommunicationMechanism();              CIMInstance instance = _buildInstancCIMXMLCommunicationMechanism("PegasusCIMXMLCommunications");
             CIMObjectPath ref = _buildInstancePath(CIMNamespaceName(),             CIMObjectPath ref = _buildInstancePath(CIMNamespaceName(),
                 CIM_CIMXMLCOMMUNICATIONMECHANISM_CLASSNAME, instance);                 CIM_CIMXMLCOMMUNICATIONMECHANISM_CLASSNAME, instance);
             handler.deliver(ref);             handler.deliver(ref);


Legend:
Removed from v.1.5.2.3  
changed lines
  Added in v.1.5.2.4

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2