00001 #ifndef _IT_WSDL_WSDL_PORT_H_
00002 #define _IT_WSDL_WSDL_PORT_H_
00003
00004
00005
00006
00007 #include <it_wsdl/api_defines.h>
00008 #include <it_wsdl/wsdl_error_handler.h>
00009 #include <it_wsdl/wsdl_node.h>
00010 #include <it_wsdl/wsdl_extension_element.h>
00011 #include <it_wsdl/wsdl_extension_element.h>
00012 #include <it_wsdl/wsdl_binding.h>
00013
00014 namespace IT_WSDL
00015 {
00016 class WSDLService;
00017
00022 class IT_WSDL_API WSDLPort : virtual public WSDLExtensibleNode
00023 {
00024 public:
00031 virtual const IT_Bus::String &
00032 get_name() const = 0;
00033
00041 virtual const WSDLService &
00042 get_service() const = 0;
00043
00051 virtual WSDLService &
00052 get_service() = 0;
00053
00061 virtual const WSDLBinding *
00062 get_binding() const = 0;
00063
00064 protected:
00065 WSDLPort() {}
00066
00067 private:
00068
00069 WSDLPort &
00070 operator = (
00071 const WSDLPort& rhs
00072 );
00073
00074 WSDLPort(
00075 const WSDLPort& rhs
00076 );
00077 };
00078 }
00079
00080 #endif