summaryrefslogtreecommitdiff
path: root/modules/CIAO/ciao/Deployment.idl
blob: 793c44fc853ec3cff6582540ea7c1ce2efd45845 (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
// $Id$

#ifndef DEPLOYMENT_IDL
#define DEPLOYMENT_IDL

#include "ciao/Deployment_Packaging_Data.idl"
#include "ciao/Deployment_Target_Data.idl"

module Deployment {

  exception InvalidProperty {
    string name;
    string reason;
  };

  exception NoSuchName {
  };

  exception InvalidReference {
  };

  /// Below exception types are CIAO specific
  exception PlanNotExist {
  };

  /// CIAO specific struct type used for shared component management
  /// mapping the name of component to its plan_uuid
  struct ComponentPlan
  {
    string name;
    string plan_uuid;
  };
  typedef sequence < ComponentPlan > ComponentPlans;
};

#endif /* DEPLOYMENT_IDL */