summaryrefslogtreecommitdiff
path: root/DAnCE/tools/System_Health/Interceptors/SHS_Interceptor.h
diff options
context:
space:
mode:
Diffstat (limited to 'DAnCE/tools/System_Health/Interceptors/SHS_Interceptor.h')
-rw-r--r--DAnCE/tools/System_Health/Interceptors/SHS_Interceptor.h87
1 files changed, 0 insertions, 87 deletions
diff --git a/DAnCE/tools/System_Health/Interceptors/SHS_Interceptor.h b/DAnCE/tools/System_Health/Interceptors/SHS_Interceptor.h
deleted file mode 100644
index a0e1bdcaf3c..00000000000
--- a/DAnCE/tools/System_Health/Interceptors/SHS_Interceptor.h
+++ /dev/null
@@ -1,87 +0,0 @@
-/**
- * @file SHS_Interceptor.h
- * @author William R. Otte <wotte@dre.vanderbilt.edu>
- *
- * Interceptors which implement a Best Effort error handling mechanism.
- */
-
-#ifndef DEPLOYMENT_INTERCEPTORS_H
-#define DEPLOYMENT_INTERCEPTORS_H
-
-#include "dance/DAnCE_DeploymentInterceptors_Base_Impl.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-#pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "ace/Auto_Ptr.h"
-#include "tao/LocalObject.h"
-#include "DAnCE_SHS_Interceptors_export.h"
-
-#include "System_Health/Interceptors/SHS_Transport.h"
-
-namespace DAnCE
-{
- class DAnCE_SHS_Interceptors_Export SHS_Interceptor
- : public virtual DAnCE::DeploymentInterceptor_Base
- {
- public:
- // Constructor
-
- SHS_Interceptor (void);
-
- // Destructor
- virtual ~SHS_Interceptor (void);
-
- virtual
- void post_install (const ::Deployment::DeploymentPlan & plan,
- ::CORBA::ULong index,
- const ::CORBA::Any & reference,
- const ::CORBA::Any & exception_thrown);
-
- virtual
- void post_connect (const ::Deployment::DeploymentPlan & plan,
- ::CORBA::ULong connectionRef,
- const ::CORBA::Any & exceptionThrown);
-
-
- virtual
- void post_configured (const ::Deployment::DeploymentPlan & plan,
- ::CORBA::ULong instanceRef,
- const ::CORBA::Any & exception_thrown);
-
- virtual
- void post_activate (const ::Deployment::DeploymentPlan & plan,
- ::CORBA::ULong instanceRef,
- const ::CORBA::Any & exception_thrown);
-
- virtual
- void post_passivate (const ::Deployment::DeploymentPlan & plan,
- ::CORBA::ULong instanceRef,
- const ::CORBA::Any & exception_thrown);
-
- virtual
- void post_remove (const ::Deployment::DeploymentPlan & plan,
- ::CORBA::ULong instanceRef,
- const ::CORBA::Any & exception_thrown);
- virtual
- void configure(const Deployment::Properties&);
-
- virtual
- void unexpected_event (const ::Deployment::DeploymentPlan & plan,
- ::CORBA::ULong index,
- const ::CORBA::Any & exception_thrown,
- const char *error);
-
- private:
- auto_ptr <DAnCE::SHS::SHS_Transport> shs_transport_;
- };
-}
-
-extern "C"
-{
- ::DAnCE::DeploymentInterceptor_ptr
- DAnCE_SHS_Interceptors_Export create_DAnCE_SHS_Interceptor (void);
-}
-
-#endif