summaryrefslogtreecommitdiff
path: root/modules/CIAO/ccm/CCM_HomeFinder.idl
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/ccm/CCM_HomeFinder.idl')
-rw-r--r--modules/CIAO/ccm/CCM_HomeFinder.idl29
1 files changed, 29 insertions, 0 deletions
diff --git a/modules/CIAO/ccm/CCM_HomeFinder.idl b/modules/CIAO/ccm/CCM_HomeFinder.idl
new file mode 100644
index 00000000000..50c41811acb
--- /dev/null
+++ b/modules/CIAO/ccm/CCM_HomeFinder.idl
@@ -0,0 +1,29 @@
+// $Id$
+/// Compliant with OMG 06-04-01 Section 6.8
+
+#if !defined (CCM_HOMEFINDER_IDL)
+#define CCM_HOMEFINDER_IDL
+
+#include "tao/orb_types.pidl"
+
+module Components
+{
+ typeprefix Components "omg.org";
+
+ exception HomeNotFound {};
+
+ interface CCMHome;
+
+ interface HomeFinder
+ {
+ CCMHome find_home_by_component_type (in CORBA::RepositoryId comp_repid)
+ raises (HomeNotFound);
+
+ CCMHome find_home_by_home_type (in CORBA::RepositoryId home_repid)
+ raises (HomeNotFound);
+
+ CCMHome find_home_by_name (in string home_name)
+ raises (HomeNotFound);
+ };
+};
+#endif /* CCM_HOMEFINDER_IDL */