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 ro...@apache.org on 2003/10/04 19:22:52 UTC

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

roshan      2003/10/04 10:22:52

  Modified:    c/src/wsdd WSDDService.h WSDDService.cpp WSDDDeployment.h
                        WSDDDeployment.cpp
  Log:
  minor changes to support the deployment tool
  
  Revision  Changes    Path
  1.7       +2 -1      ws-axis/c/src/wsdd/WSDDService.h
  
  Index: WSDDService.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wsdd/WSDDService.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- WSDDService.h	5 Sep 2003 10:48:51 -0000	1.6
  +++ WSDDService.h	4 Oct 2003 17:22:52 -0000	1.7
  @@ -78,9 +78,10 @@
   class WSDDService : public WSDDHandler 
   {
   public:
  +	const list<AxisString> getAllowedMethods() const;
   	void SetServiceName(const AxisChar* sServiceName);
   	void SetProvider(const AxisChar* sProvider);
  -	const AxisChar* GetServiceName();
  +	const AxisChar* GetServiceName() const;
   	bool IsAllowedMethod(const AxisChar* sMethodName) const;
   	void AddAllowedMethod(const AxisChar* sMethodName);
   	const WSDDHandlerList* GetResponseFlowHandlers() const;
  
  
  
  1.10      +6 -1      ws-axis/c/src/wsdd/WSDDService.cpp
  
  Index: WSDDService.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wsdd/WSDDService.cpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- WSDDService.cpp	9 Sep 2003 12:53:01 -0000	1.9
  +++ WSDDService.cpp	4 Oct 2003 17:22:52 -0000	1.10
  @@ -108,7 +108,7 @@
   	m_sProvider = sProvider;
   }
   
  -const AxisChar* WSDDService::GetServiceName()
  +const AxisChar* WSDDService::GetServiceName() const
   {
   	return m_sName.c_str();
   }
  @@ -165,3 +165,8 @@
   	}
   }
   
  +
  +const list<AxisString> WSDDService::getAllowedMethods() const
  +{
  +	return m_AllowedMethods;
  +}
  
  
  
  1.8       +1 -1      ws-axis/c/src/wsdd/WSDDDeployment.h
  
  Index: WSDDDeployment.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wsdd/WSDDDeployment.h,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- WSDDDeployment.h	5 Sep 2003 10:48:51 -0000	1.7
  +++ WSDDDeployment.h	4 Oct 2003 17:22:52 -0000	1.8
  @@ -89,7 +89,7 @@
   	const WSDDHandlerList* GetGlobalResponseFlowHandlers();
   	const WSDDHandlerList* GetTransportRequestFlowHandlers(AXIS_PROTOCOL_TYPE protocol);
   	const WSDDHandlerList* GetTransportResponseFlowHandlers(AXIS_PROTOCOL_TYPE protocol);
  -	const WSDDServiceMap* GetWSDDServiceMap();
  +	const WSDDServiceMap* GetWSDDServiceMap() const;
   	WSDDDeployment();
   	virtual ~WSDDDeployment();
   private: //methods that only be used by WSDDDepolyment.
  
  
  
  1.11      +1 -1      ws-axis/c/src/wsdd/WSDDDeployment.cpp
  
  Index: WSDDDeployment.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wsdd/WSDDDeployment.cpp,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- WSDDDeployment.cpp	9 Sep 2003 12:53:01 -0000	1.10
  +++ WSDDDeployment.cpp	4 Oct 2003 17:22:52 -0000	1.11
  @@ -169,7 +169,7 @@
   	}
   }
   
  -const WSDDServiceMap* WSDDDeployment::GetWSDDServiceMap()
  +const WSDDServiceMap* WSDDDeployment::GetWSDDServiceMap() const
   {
   	return m_DeployedServices;
   }