00001 #ifndef _IT_BUS_PDK_WSA_CONFIG_CONTEXT_H_
00002 #define _IT_BUS_PDK_WSA_CONFIG_CONTEXT_H_
00003
00004
00005
00006
00007 #include <it_bus/api_defines.h>
00008 #include <it_bus_pdk/context_attrs/wsaddressing_2004_xsdTypes.h>
00009 #include <it_bus_pdk/context_base.h>
00010
00011 namespace IT_Bus
00012 {
00013 class IT_CONTEXT_ATTRIBUTE_API WSAConfigurationContext : public Context
00014 {
00015 public:
00016
00017 void
00018 set_wsa_replyto_uri(
00019 const IT_Bus::String& wsa_replyto_uri
00020 );
00021
00022 const WS_Addressing_2004::AttributedURI&
00023 get_wsa_replyto_uri();
00024
00025 const IT_Bus::String&
00026 get_wsa_replyto_uri_as_string();
00027
00028 WSAConfigurationContext();
00029
00030 WSAConfigurationContext&
00031 operator =(
00032 const WSAConfigurationContext& rhs
00033 );
00034
00035 WSAConfigurationContext(
00036 const WSAConfigurationContext& rhs
00037 );
00038
00039 virtual ~WSAConfigurationContext();
00040
00041 private:
00042
00043 WS_Addressing_2004::AttributedURI m_wsa_replyto_uri;
00044 };
00045 }
00046
00047 #endif