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 da...@apache.org on 2004/04/09 11:44:19 UTC

cvs commit: ws-axis/c/src/server/adminservice AxisAdminServiceWrapper.h

damitha     2004/04/09 02:44:19

  Modified:    c/src/server/adminservice AxisAdminServiceWrapper.h
  Log:
  replaced indent tabs with spaces; added apache 2 licence.
  
  Revision  Changes    Path
  1.3       +36 -16    ws-axis/c/src/server/adminservice/AxisAdminServiceWrapper.h
  
  Index: AxisAdminServiceWrapper.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/adminservice/AxisAdminServiceWrapper.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- AxisAdminServiceWrapper.h	4 Apr 2004 12:59:13 -0000	1.2
  +++ AxisAdminServiceWrapper.h	9 Apr 2004 09:44:19 -0000	1.3
  @@ -1,8 +1,25 @@
  +/* -*- C++ -*- */
   /*
  - * This is the Service Class genarated by the tool WSDL2Ws
  - *		AxisAdminServiceWrapper.h: interface for the AxisAdminServiceWrapperclass.
  + *   Copyright 2003-2004 The Apache Software Foundation.
  + *
  + *   Licensed under the Apache License, Version 2.0 (the "License");
  + *   you may not use this file except in compliance with the License.
  + *   You may obtain a copy of the License at
    *
  + *       http://www.apache.org/licenses/LICENSE-2.0
  + *
  + *   Unless required by applicable law or agreed to in writing, software
  + *   distributed under the License is distributed on an "AS IS" BASIS,
  + *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  + *   See the License for the specific language governing permissions and
  + *   limitations under the License.
  + */
  +
  +/*
  + * This is the Service Class genarated by the tool WSDL2Ws
  + * AxisAdminServiceWrapper.h: interface for the AxisAdminServiceWrapperclass.
    */
  +
   #if !defined(__AXISADMINSERVICEWRAPPER_SERVERWRAPPER_H__INCLUDED_)
   #define __AXISADMINSERVICEWRAPPER_SERVERWRAPPER_H__INCLUDED_
   
  @@ -11,20 +28,23 @@
   #include <axis/server/GDefine.h>
   #include <axis/server/AxisWrapperAPI.h>
   
  -class AxisAdminServiceWrapper : public WrapperClassHandler
  +class AxisAdminServiceWrapper:public WrapperClassHandler
   {
  -public:
  -	AxisAdminServiceWrapper();
  -public:
  -	virtual ~AxisAdminServiceWrapper();
  -public:/*implementation of WrapperClassHandler interface*/
  -	int AXISCALL Invoke(void* pMsg);
  -	void AXISCALL OnFault(void* pMsg);
  -	int AXISCALL Init();
  -	int AXISCALL Fini();
  -	AXIS_BINDING_STYLE AXISCALL GetBindingStyle(){return DOC_LITERAL;};
  -private:/*Methods corresponding to the web service methods*/
  -	int updateWSDD(void* pMsg);
  +    public:
  +        AxisAdminServiceWrapper ();
  +    public:
  +        virtual ~ AxisAdminServiceWrapper ();
  +    public: /*implementation of WrapperClassHandler interface */
  +        int AXISCALL Invoke (void* pMsg);
  +        void AXISCALL OnFault (void* pMsg);
  +        int AXISCALL Init ();
  +        int AXISCALL Fini ();
  +        AXIS_BINDING_STYLE AXISCALL GetBindingStyle ()
  +        {
  +            return DOC_LITERAL;
  +        };
  +    private: /*Methods corresponding to the web service methods */
  +        int updateWSDD (void* pMsg);
   };
   
  -#endif /* !defined(__AXISADMINSERVICEWRAPPER_SERVERWRAPPER_H__INCLUDED_)*/
  +#endif