summaryrefslogtreecommitdiff
path: root/TAO/CIAO/ciao/HomeRegistrar.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/ciao/HomeRegistrar.idl')
-rw-r--r--TAO/CIAO/ciao/HomeRegistrar.idl38
1 files changed, 0 insertions, 38 deletions
diff --git a/TAO/CIAO/ciao/HomeRegistrar.idl b/TAO/CIAO/ciao/HomeRegistrar.idl
deleted file mode 100644
index 42176c1d571..00000000000
--- a/TAO/CIAO/ciao/HomeRegistrar.idl
+++ /dev/null
@@ -1,38 +0,0 @@
-// $Id$
-
-/**
- * @file HomeRegistrar.idl
- *
- * This file define the interface supported by CIAO's HomeFinder
- * service. It is basically an extension of Components::HomeFinder
- * interface by supporting CIAO specific home
- */
-
-#include "CCM_Component.idl"
-
-module CIAO
-{
- exception AlreadyBound
- {
- // Equivalent to CosNaming::NamingContext::AlreadyBound exception.
- };
-
- exception InvalidName
- {
- // Equivalent to CosNaming::NamingContext::InvalidName exception.
- };
-
- exception HomeRegisterFailure
- {
- // Equivalent to CosNaming::NamingContext::InvalidName exception.
- };
-
- interface HomeRegistrar : Components::HomeFinder
- {
- void register_home (in CORBA::RepositoryId home_repo_id,
- in CORBA::RepositoryId comp_repo_id,
- in string home_name,
- in Object objref)
- raises (AlreadyBound, InvalidName, HomeRegisterFailure);
- };
-};