summaryrefslogtreecommitdiff
path: root/orbsvcs/tests/Bug_2615_Regression/Test.idl
blob: 13acc1872768d9ac297158bc29b3ba942c3577ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// $Id$
//

/// Put the interfaces in a module, to avoid global namespace pollution
module Test
{
  interface Hello
  {
    /// A method to shutdown the ORB
    /**
     * This method is used to simplify the test shutdown process
     */
    oneway void shutdown ();

    // Lets make sure things are working
    void ping ();

    // Calling this method returns true iff a FT request
    // service context was received in the server
    boolean has_ft_request_service_context ();
  };
};