summaryrefslogtreecommitdiff
path: root/DAnCE/dance/DAnCE_DeploymentInterceptors_Base_Impl.cpp
blob: 4a31e06dfc904be85912bcf7b64a590a7e22ef21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
// -*- C++ -*-
#include "DAnCE_DeploymentInterceptors_Base_Impl.h"

namespace DAnCE
{
  // Implementation skeleton constructor
  DeploymentInterceptor_Base::DeploymentInterceptor_Base (void)
  {
  }

  // Implementation skeleton destructor
  DeploymentInterceptor_Base::~DeploymentInterceptor_Base (void)
  {
  }

  void
  DeploymentInterceptor_Base::configure (const ::Deployment::Properties &)
  {
    // Add your implementation here
  }

  void
  DeploymentInterceptor_Base::preprocess_plan (::Deployment::DeploymentPlan &)
  {
    // Add your implementation here
  }

  void
  DeploymentInterceptor_Base::pre_install (::Deployment::DeploymentPlan &,
                                                    ::CORBA::ULong)
  {
    // Add your implementation here
  }

  void
  DeploymentInterceptor_Base::post_install (const ::Deployment::DeploymentPlan &,
                                                     ::CORBA::ULong,
                                                     const ::CORBA::Any & ,
                                                     const ::CORBA::Any & )
  {
    // Add your implementation here
  }

  void
  DeploymentInterceptor_Base::post_endpoint_reference (const ::Deployment::DeploymentPlan & ,
                                                               ::CORBA::ULong ,
                                                               const ::CORBA::Any & ,
                                                               const ::CORBA::Any & )
  {
    // Add your implementation here
  }

  void
  DeploymentInterceptor_Base::pre_connect (::Deployment::DeploymentPlan & ,
                                                    ::CORBA::ULong ,
                                                    ::CORBA::Any & )
  {
    // Add your implementation here
  }

  void
  DeploymentInterceptor_Base::post_connect (const ::Deployment::DeploymentPlan & ,
                                                     ::CORBA::ULong ,
                                                     const ::CORBA::Any & )
  {
    // Add your implementation here
  }

  void
  DeploymentInterceptor_Base::pre_disconnect (::Deployment::DeploymentPlan &,
                                       ::CORBA::ULong)
  {
    // Add your implementation here
  }

  void
  DeploymentInterceptor_Base::post_disconnect (const ::Deployment::DeploymentPlan &,
                                             ::CORBA::ULong,
                                             const ::CORBA::Any &)
  {
    // Add your implementation here
  }

  void DeploymentInterceptor_Base::post_configured (const ::Deployment::DeploymentPlan & ,
                                                                ::CORBA::ULong ,
                                                                const ::CORBA::Any &)
  {
    // Add your implementation here
  }

  void DeploymentInterceptor_Base::post_activate (const ::Deployment::DeploymentPlan & ,
                                                              ::CORBA::ULong ,
                                                              const ::CORBA::Any & )
  {
    // Add your implementation here
  }

  void DeploymentInterceptor_Base::post_passivate (const ::Deployment::DeploymentPlan & ,
                                                               ::CORBA::ULong ,
                                                               const ::CORBA::Any &)
  {
    // Add your implementation here
  }

  void DeploymentInterceptor_Base::post_remove (const ::Deployment::DeploymentPlan & ,
                                                            ::CORBA::ULong ,
                                                            const ::CORBA::Any & )
  {
    // Add your implementation here
  }

  void DeploymentInterceptor_Base::unexpected_event (const ::Deployment::DeploymentPlan &,
                                                     ::CORBA::ULong,
                                                     const ::CORBA::Any &,
                                                     const char *)
  {
  }
}