summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/Deployment/Deployment_Core.idl
diff options
context:
space:
mode:
authorAbdullah Sowayan <sowayan@users.noreply.github.com>2007-03-18 22:23:37 +0000
committerAbdullah Sowayan <sowayan@users.noreply.github.com>2007-03-18 22:23:37 +0000
commit06a34455bd98b1379cc69bbc5b2cf085e0fc0d9b (patch)
tree8815ce3b3a85c3c4285429295f338e00ea4497f4 /CIAO/DAnCE/Deployment/Deployment_Core.idl
parentd66fcc9b4aaec8e88eeb83fc578fdf8a3cc963de (diff)
downloadATCD-06a34455bd98b1379cc69bbc5b2cf085e0fc0d9b.tar.gz
Diffstat (limited to 'CIAO/DAnCE/Deployment/Deployment_Core.idl')
-rw-r--r--CIAO/DAnCE/Deployment/Deployment_Core.idl49
1 files changed, 49 insertions, 0 deletions
diff --git a/CIAO/DAnCE/Deployment/Deployment_Core.idl b/CIAO/DAnCE/Deployment/Deployment_Core.idl
new file mode 100644
index 00000000000..d6c32e010a9
--- /dev/null
+++ b/CIAO/DAnCE/Deployment/Deployment_Core.idl
@@ -0,0 +1,49 @@
+// $Id$
+
+#if !defined (DEPLOYMENT_CORE_IDL)
+#define DEPLOYMENT_CORE_IDL
+
+#include "ciao/CCM_Component.idl"
+#include "DAnCE/Deployment/Deployment_TargetData.idl"
+#include "DAnCE/Deployment/Deployment_Data.idl"
+#include "DAnCE/Deployment/Deployment_Application.idl"
+
+// *************** Packaging and Deployment ***************
+module Deployment
+{
+ // Typeprefix Components "omg.org";
+ // OMG threw these things away, didn't it.
+
+ /// CIAO specific
+ exception UnknownImplId
+ {
+ string name;
+ string reason;
+ };
+
+ /// CIAO specific
+ exception InstallationFailure
+ {
+ string name;
+ string reason;
+ };
+
+ /// CIAO specific
+ exception ImplEntryPointNotFound
+ {
+ string name;
+ string reason;
+ };
+
+ /**
+ * The StopError exception is raised if a problem occurred while terminating
+ * an application, either during the terminate operation of the
+ * ApplicationManager or during the destroyManager operation of the
+ * ExecutionManager.
+ */
+ exception StopError {
+ string name;
+ string reason;
+ };
+};
+#endif /* DEPLOYMENT_CORE_IDL */