00001 #ifndef _IT_BUS_SERVICES_SESSION_ENDPOINT_MONITOR_H_
00002 #define _IT_BUS_SERVICES_SESSION_ENDPOINT_MONITOR_H_
00003
00004
00005
00006
00007 #if !defined(IT_WS_SM_ENDPOINT_MGR_API)
00008 #if defined(IT_WS_SM_ENDPOINT_MGR_API_EXPORT)
00009 #define IT_WS_SM_ENDPOINT_MGR_API IT_DECLSPEC_EXPORT
00010 #else
00011 #define IT_WS_SM_ENDPOINT_MGR_API IT_DECLSPEC_IMPORT
00012 #endif
00013 #endif
00014
00015 #include <orbix_pdk/orb_plugin.hh>
00016 #include <it_bus_services/session_state_callback.h>
00017 #include <it_bus/bus.h>
00018
00019 namespace IT_Bus_Services
00020 {
00021 namespace IT_SessionManager
00022 {
00023 class IT_WS_SM_ENDPOINT_MGR_API SessionEndpointMonitor :
00024 public virtual CORBA::LocalObject
00025 {
00026 public:
00027 virtual bool
00028 is_valid_session(
00029 const IT_Bus::String & name,
00030 const IT_Bus::String & group
00031 ) = 0;
00032
00033 protected:
00034 SessionEndpointMonitor() {}
00035
00036 private:
00037
00038 SessionEndpointMonitor(const SessionEndpointMonitor&);
00039 void operator=(const SessionEndpointMonitor&);
00040 };
00041 }
00042 }
00043
00044 #endif