00001 #ifndef _IT_WSDL_WSDL_SERVICE_H_
00002 #define _IT_WSDL_WSDL_SERVICE_H_
00003
00004
00005
00006
00007 #include <it_dsa/vector.h>
00008
00009 #include <it_wsdl/api_defines.h>
00010 #include <it_wsdl/wsdl_port.h>
00011 #include <it_wsdl/wsdl_node.h>
00012 #include <it_wsdl/wsdl_exception.h>
00013 #include <it_bus/qname.h>
00014 #include <it_wsdl/wsdl_extension_element.h>
00015 #include <it_wsdl/wsdl_port.h>
00016
00017 namespace IT_WSDL
00018 {
00022 typedef IT_Vector<WSDLPort *> WSDLPortVector;
00023
00028 class IT_WSDL_API WSDLService : virtual public WSDLExtensibleNode
00029 {
00030 public:
00038 virtual WSDLDefinitions &
00039 get_definitions() = 0;
00040
00048 virtual const WSDLDefinitions &
00049 get_definitions() const = 0;
00050
00059 virtual const WSDLPort *
00060 get_port(
00061 const IT_Bus::String & port_name
00062 ) const = 0;
00063
00072 virtual WSDLPort *
00073 get_port(
00074 const IT_Bus::String & port_name
00075 ) = 0;
00076
00085 virtual WSDLPortVector &
00086 get_ports() = 0;
00087
00096 virtual const WSDLPortVector &
00097 get_ports() const = 0;
00098
00104 virtual const IT_Bus::QName &
00105 get_name() const = 0;
00106
00107 virtual WSDLPort *
00108 create_port(
00109 const IT_Bus::String & port_name,
00110 const IT_Bus::QName & binding_qname
00111 ) throw((WSDLException)) = 0;
00112
00113 protected:
00114 WSDLService() {}
00115
00116 private:
00117 WSDLService &
00118 operator = (
00119 const WSDLService& rhs
00120 );
00121
00122 WSDLService(
00123 const WSDLService& rhs
00124 );
00125 };
00126 }
00127
00128 #endif