You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sa...@apache.org on 2003/07/27 12:04:41 UTC

cvs commit: xml-axis/c/src/wsdd WSDDDeployment.h WSDDDeployment.cpp

sanjaya     2003/07/27 03:04:41

  Modified:    c/src/wsdd WSDDDeployment.h WSDDDeployment.cpp
  Log:
  added method to return the deployed services map
  
  Revision  Changes    Path
  1.2       +1 -0      xml-axis/c/src/wsdd/WSDDDeployment.h
  
  Index: WSDDDeployment.h
  ===================================================================
  RCS file: /home/cvs/xml-axis/c/src/wsdd/WSDDDeployment.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- WSDDDeployment.h	25 Jun 2003 05:55:48 -0000	1.1
  +++ WSDDDeployment.h	27 Jul 2003 10:04:41 -0000	1.2
  @@ -93,6 +93,7 @@
   	WSDDHandlerList* GetGlobalRequestFlowHandlers();
   	int SetGlobalResponseFlowHandlers(WSDDHandlerList * gresflow);
   	WSDDHandlerList* GetGlobalResponseFlowHandlers();
  +	const WSDDServiceMap* GetWSDDServiceMap();
   	WSDDDeployment();
   	virtual ~WSDDDeployment();
   private:
  
  
  
  1.3       +8 -0      xml-axis/c/src/wsdd/WSDDDeployment.cpp
  
  Index: WSDDDeployment.cpp
  ===================================================================
  RCS file: /home/cvs/xml-axis/c/src/wsdd/WSDDDeployment.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- WSDDDeployment.cpp	2 Jul 2003 05:30:11 -0000	1.2
  +++ WSDDDeployment.cpp	27 Jul 2003 10:04:41 -0000	1.3
  @@ -183,3 +183,11 @@
   		return NULL;
   	}
   }
  +
  +const WSDDServiceMap* WSDDDeployment::GetWSDDServiceMap()
  +{
  +	return m_DeployedServices;
  +}
  +
  +
  +