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 di...@apache.org on 2004/11/30 16:51:42 UTC

cvs commit: ws-axis/c/src/transport/axis2 ISecureChannel.hpp

dicka       2004/11/30 07:51:42

  Modified:    c/src/transport/axis2 ISecureChannel.hpp
  Log:
  Update ISecureChannel to include public method setTransportProperty(AXIS_TRANSPORT_INFORMATION_TYPE type, const char* value).
  
  Submitted by: Adrian Dick
  Reviewed by: Fred Preston
  
  Revision  Changes    Path
  1.4       +2 -0      ws-axis/c/src/transport/axis2/ISecureChannel.hpp
  
  Index: ISecureChannel.hpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis2/ISecureChannel.hpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ISecureChannel.hpp	30 Nov 2004 07:46:00 -0000	1.3
  +++ ISecureChannel.hpp	30 Nov 2004 15:51:41 -0000	1.4
  @@ -1,6 +1,7 @@
   #if !defined(_AXIS_ISECURECHANNEL_HPP)
   #define _AXIS_ISECURECHANNEL_HPP
   #include <string>
  +#include <axis/GDefine.hpp>
   
   using namespace std;
   
  @@ -9,6 +10,7 @@
   public:
   	virtual void			setSecureProperties( const char *)=0;
   	virtual const char *	getSecureProperties()=0;
  +	virtual int setTransportProperty(AXIS_TRANSPORT_INFORMATION_TYPE type, const char* value)=0;
   };
   
   #endif