summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Security/Secure_Invocation/Foo.idl
blob: d52d94a51c2b2e42d0d355becb2ba759b473f1cd (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
31
32
// -*- IDL -*-

//=============================================================================
/**
 * @file Foo.idl
 *
 * $Id$
 *
 * 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 ();
  };

};