summaryrefslogtreecommitdiff
path: root/modules/CIAO/ccm/CCM_EntityContext.idl
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/ccm/CCM_EntityContext.idl')
-rw-r--r--modules/CIAO/ccm/CCM_EntityContext.idl27
1 files changed, 27 insertions, 0 deletions
diff --git a/modules/CIAO/ccm/CCM_EntityContext.idl b/modules/CIAO/ccm/CCM_EntityContext.idl
new file mode 100644
index 00000000000..200077752a9
--- /dev/null
+++ b/modules/CIAO/ccm/CCM_EntityContext.idl
@@ -0,0 +1,27 @@
+// $Id$
+
+#if !defined (CCM_ENTITYCONTEXT_IDL)
+#define CCM_ENTITYCONTEXT_IDL
+
+#include "ccm/CCM_Context.idl"
+#include "ccm/CCM_Object.idl"
+
+#if !defined (CCM_LW)
+
+module Components
+{
+ typeprefix Components "omg.org";
+
+ local interface EntityContext : CCMContext
+ {
+ Object get_CCM_object ()
+ raises (IllegalState);
+
+ PrimaryKeyBase get_primary_key ()
+ raises (IllegalState);
+ };
+};
+
+#endif
+
+#endif /* CCM_ENTITYCONTEXT_IDL */