diff options
Diffstat (limited to 'CIAO/ciao/CCM_ContainerServantRequestInfo.idl')
-rw-r--r-- | CIAO/ciao/CCM_ContainerServantRequestInfo.idl | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/CIAO/ciao/CCM_ContainerServantRequestInfo.idl b/CIAO/ciao/CCM_ContainerServantRequestInfo.idl new file mode 100644 index 00000000000..0a3348b8f7e --- /dev/null +++ b/CIAO/ciao/CCM_ContainerServantRequestInfo.idl @@ -0,0 +1,25 @@ +// $Id$ + +#if !defined (CCM_CONTAINERSERVANTREQUESTINFO_IDL) +#define CCM_CONTAINERSERVANTREQUESTINFO_IDL + +#include "ciao/CCM_ContainerRequestInfo.idl" +#include "ciao/CCM_EnterpriseComponent.idl" +#include "tao/AnyTypeCode/Dynamic.pidl" + +module Components +{ + module ContainerPortableInterceptor + { + local interface ContainerServantRequestInfo : ContainerRequestInfo + { + attribute Dynamic::ParameterList arguments; + readonly attribute string operation; + attribute any result; + attribute Components::EnterpriseComponent target; + attribute any the_exception; + }; + }; +}; + +#endif /* CCM_CONTAINERSERVANTREQUESTINFO_IDL */ |