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

Diff for /pegasus/src/Pegasus/ProviderManager2/ProviderManager.cpp between version 1.2 and 1.15

version 1.2, 2003/10/08 16:31:16 version 1.15, 2004/10/17 20:40:01
Line 1 
Line 1 
 //%/////////////////////////////////////////////////////////////////////////////  //%2004////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000 - 2003 BMC Software, Hewlett-Packard Company, IBM,  // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
 // The Open Group, Tivoli Systems  // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
   // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
   // IBM Corp.; EMC Corporation, The Open Group.
   // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
   // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
 // of this software and associated documentation files (the "Software"), to // of this software and associated documentation files (the "Software"), to
Line 23 
Line 27 
 // //
 // Author: Chip Vincent (cvincent@us.ibm.com) // Author: Chip Vincent (cvincent@us.ibm.com)
 // //
 // Modified By:  // Modified By: Roger Kumpf, Hewlett-Packard Company (roger_kumpf@hp.com)
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #include "ProviderManager.h" #include "ProviderManager.h"
   #include <Pegasus/Common/FileSystem.h>
   #include <Pegasus/Config/ConfigManager.h>
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
Line 39 
Line 45 
 { {
 } }
  
 Message * ProviderManager::processMessage(Message * message)  String ProviderManager::_resolvePhysicalName(String physicalName)
 { {
     // subclasses should implement this method. if not implented, the base      String fileName = FileSystem::buildLibraryFileName(physicalName);
     // classes generates a generic failure.  
   
     return(message);  
 }  
  
 ProviderName ProviderManager::findProvider(const ProviderName & providerName)      fileName = FileSystem::getAbsoluteFileName(
 {          ConfigManager::getHomedPath(
     return(_registrar.findProvider(providerName));              ConfigManager::getInstance()->getCurrentValue("providerDir")),
 }          fileName);
  
 Boolean ProviderManager::insertProvider(const ProviderName & providerName)      return fileName;
 {  
     return(_registrar.insertProvider(providerName));  
 } }
  
 Boolean ProviderManager::removeProvider(const ProviderName & providerName)  void ProviderManager::setIndicationCallback(
           PEGASUS_INDICATION_CALLBACK indicationCallback)
 { {
     return(_registrar.removeProvider(providerName));      _indicationCallback = indicationCallback;
 } }
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.2  
changed lines
  Added in v.1.15

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2