Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / orbsvcs / tests / Security / Secure_Invocation / Foo.idl
blobbd92c4c0fabf295bc6d05283ba8096cf3d7904d7
1 // -*- IDL -*-
3 //=============================================================================
4 /**
5 * @file Foo.idl
7 * IDL for the Secure_Invocation test.
9 * @author Ossama Othman <ossama@uci.edu>
11 //=============================================================================
13 module Foo
15 interface Bar
17 /// Exception that indicates that no security attributes were
18 /// available during the upcall. If this exception is thrown,
19 /// then is most likely a problem with the underlying security
20 /// mechanism(s).
21 exception NoSecurityAttributes {};
23 /// Test method.
24 void baz () raises (NoSecurityAttributes);
26 /// Shutdown the server.
27 oneway void shutdown ();