diff options
Diffstat (limited to 'modules/CIAO/ciao/Deployment.idl')
-rw-r--r-- | modules/CIAO/ciao/Deployment.idl | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/modules/CIAO/ciao/Deployment.idl b/modules/CIAO/ciao/Deployment.idl new file mode 100644 index 00000000000..793c44fc853 --- /dev/null +++ b/modules/CIAO/ciao/Deployment.idl @@ -0,0 +1,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 */ |