summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Security/Secure_Invocation/Foo.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/Security/Secure_Invocation/Foo.idl')
-rw-r--r--TAO/orbsvcs/tests/Security/Secure_Invocation/Foo.idl8
1 files changed, 7 insertions, 1 deletions
diff --git a/TAO/orbsvcs/tests/Security/Secure_Invocation/Foo.idl b/TAO/orbsvcs/tests/Security/Secure_Invocation/Foo.idl
index ba47c809ad6..d52d94a51c2 100644
--- a/TAO/orbsvcs/tests/Security/Secure_Invocation/Foo.idl
+++ b/TAO/orbsvcs/tests/Security/Secure_Invocation/Foo.idl
@@ -16,8 +16,14 @@ module Foo
{
interface Bar
{
+ /// Exception that indicates that no security attributes were
+ /// available during the upcall. If this exception is thrown,
+ /// then is most likely a problem with the underlying security
+ /// mechanism(s).
+ exception NoSecurityAttributes {};
+
/// Test method.
- void baz ();
+ void baz () raises (NoSecurityAttributes);
/// Shutdown the server.
oneway void shutdown ();