summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/Collocated/Service_Context_Manipulation/test.idl
blob: d49c6f7aa1a6e54c01da786651cbc64b5cf377a4 (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
33
34
35
36
37
38
39
40
41
42
43
44
45

//=============================================================================
/**
 *  @file    test.idl
 *
 *  $Id$
 *
 *  Simple IDL file to test collocated portable interceptor support.
 *
 *
 *  @author Nanbor Wang <nanbor@cs.wustl.edu>
 */
//=============================================================================


module Test_Interceptors
{
  exception Silly
    {};

  interface Visual
  {
    // = TITLE
    //   A test idl for checking interceptor visually.
    //
    // = DESCRIPTION
    //

    void normal (in long arg);
    // Normal operation.

    void nothing ();
    // Normal operation without return.

    void user ()
      raises (Silly);
    // throws a user exception.

    void system ();
    // thows a system exception.

    oneway void shutdown ();
    // shutdown the ORB
  };
};