summaryrefslogtreecommitdiff
path: root/DAnCE/dance/DAnCE_ArtifactInstallation.idl
diff options
context:
space:
mode:
Diffstat (limited to 'DAnCE/dance/DAnCE_ArtifactInstallation.idl')
-rw-r--r--DAnCE/dance/DAnCE_ArtifactInstallation.idl37
1 files changed, 0 insertions, 37 deletions
diff --git a/DAnCE/dance/DAnCE_ArtifactInstallation.idl b/DAnCE/dance/DAnCE_ArtifactInstallation.idl
deleted file mode 100644
index 999b8782b60..00000000000
--- a/DAnCE/dance/DAnCE_ArtifactInstallation.idl
+++ /dev/null
@@ -1,37 +0,0 @@
-#ifndef DANCE_ARTIFACT_INSTALLATION_IDL
-#define DANCE_ARTIFACT_INSTALLATION_IDL
-
-#include "Deployment/Deployment_DeploymentPlan.idl"
-#include "Deployment/Deployment_PlanError.idl"
-
-module DAnCE
-{
- interface ArtifactInstallation
- {
- void initialize ()
- raises (::Deployment::PlanError);
-
- void clear ()
- raises (::Deployment::PlanError);
-
- /// Acts as a front end to the ArtifactInstallationHandlers
- /// that were installed at object creation. Each InstallationHandler
- /// is capable of handling a single URI type;
- void install (in string plan_uuid,
- in ::Deployment::ArtifactDeploymentDescription artifact)
- raises (::Deployment::PlanError);
-
- void remove (in string plan_uuid,
- in string artifact_name)
- raises (::Deployment::PlanError);
-
- void remove_all (in string plan_uuid)
- raises (::Deployment::PlanError);
-
- /// Used by component/locality server to query location of a given artifact
- string get_artifact_location (in string uuid,
- in string artifact_name);
- };
-};
-
-#endif /* DANCE_ARTIFACT_INSTALLATION_IDL */