summaryrefslogtreecommitdiff
path: root/TAO/CIAO/ciao/RepositoryManager.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/ciao/RepositoryManager.idl')
-rw-r--r--TAO/CIAO/ciao/RepositoryManager.idl38
1 files changed, 0 insertions, 38 deletions
diff --git a/TAO/CIAO/ciao/RepositoryManager.idl b/TAO/CIAO/ciao/RepositoryManager.idl
deleted file mode 100644
index f7fbe6f4d36..00000000000
--- a/TAO/CIAO/ciao/RepositoryManager.idl
+++ /dev/null
@@ -1,38 +0,0 @@
-// $Id$
-#ifndef REPOSITORY_MANAGER_IDL
-#define REPOSITORY_MANAGER_IDL
-
-#include "Packaging_Data.idl"
-#include "Deployment.idl"
-
-module Deployment {
-
- exception NameExists {
- };
-
- exception PackageError {
- string source;
- string reason;
- };
-
- interface RepositoryManager {
- void installPackage (in string installationName, in string location)
- raises (NameExists, PackageError);
- void createPackage (in string installationName,
- in PackageConfiguration package,
- in string baseLocation,
- in boolean replace)
- raises (NameExists, PackageError);
- PackageConfiguration findPackageByName (in string name)
- raises (NoSuchName);
- PackageConfiguration findPackageByUUID (in string UUID)
- raises (NoSuchName);
- ::CORBA::StringSeq findNamesByType (in string type);
- ::CORBA::StringSeq getAllNames ();
- ::CORBA::StringSeq getAllTypes ();
- void deletePackage (in string installationName)
- raises (NoSuchName);
- };
-};
-
-#endif /* REPOSITOR_MANAGER_IDL */