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

Diff for /pegasus/src/Pegasus/ProviderManager2/ProviderName.cpp between version 1.12 and 1.13

version 1.12, 2006/11/14 18:34:56 version 1.13, 2007/08/21 20:10:20
Line 37 
Line 37 
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
 ProviderName::ProviderName() : _capabilities(0)  
 {  
 }  
   
 ProviderName::ProviderName(  
     const CIMNamespaceName& nameSpace,  
     const CIMName& className,  
     const Uint32 capabilities,  
     const CIMName& method)  
     : _capabilities(capabilities)  
 {  
     _nameSpace = nameSpace;  
     _className = className;  
     _method = method;  
 }  
   
 ProviderName::ProviderName(  
     const CIMObjectPath& path,  
     const Uint32 capabilities,  
     const CIMName& method)  
     : _capabilities(capabilities)  
 {  
     _nameSpace = path.getNameSpace();  
     _className = path.getClassName();  
     _method = method;  
 }  
   
 ProviderName::ProviderName( ProviderName::ProviderName(
       const String& moduleName,
     const String& logicalName,     const String& logicalName,
     const String& physicalName,      const String& physicalName)
     const String& interfaceName,  
     const Uint32 capabilities,  
     const CIMName& method)  
     : _capabilities(capabilities)  
 { {
       _moduleName = moduleName;
     _logicalName = logicalName;     _logicalName = logicalName;
     _physicalName = physicalName;     _physicalName = physicalName;
     _interfaceName = interfaceName;  
     _method = method;  
 } }
  
 ProviderName::~ProviderName() ProviderName::~ProviderName()
Line 87 
Line 56 
     return _physicalName;     return _physicalName;
 } }
  
 void ProviderName::setPhysicalName(const String& physicalName)  String ProviderName::getModuleName() const
 { {
     _physicalName = physicalName;      return _moduleName;
 } }
  
 String ProviderName::getLogicalName() const String ProviderName::getLogicalName() const
Line 97 
Line 66 
     return _logicalName;     return _logicalName;
 } }
  
 String ProviderName::getInterfaceName() const  
 {  
     return _interfaceName;  
 }  
   
 String ProviderName::getLocation() const String ProviderName::getLocation() const
 { {
     return _location;     return _location;
Line 111 
Line 75 
 { {
     _location = location;     _location = location;
 } }
   
 Uint32 ProviderName::getCapabilitiesMask() const  
 {  
     return _capabilities;  
 }  
   
 CIMName ProviderName::getMethodName() const  
 {  
     return _method;  
 }  
   
 CIMName ProviderName::getClassName() const  
 {  
    return _className;  
 }  
   
 CIMNamespaceName ProviderName::getNameSpace() const  
 {  
    return _nameSpace;  
 }  
   
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2