blob: bd92c4c0fabf295bc6d05283ba8096cf3d7904d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// -*- IDL -*-
//=============================================================================
/**
* @file Foo.idl
*
* IDL for the Secure_Invocation test.
*
* @author Ossama Othman <ossama@uci.edu>
*/
//=============================================================================
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 () raises (NoSecurityAttributes);
/// Shutdown the server.
oneway void shutdown ();
};
};
|