summaryrefslogtreecommitdiff
path: root/TAO/examples/POA/On_Demand_Loading/Dir_Service.idl
blob: 3246e16054d05bff02ed2ebba17f5a969c06c4c9 (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
// $Id$

// ================================================================
//
// = FILENAME
//   Dir_Service.idl
//
// = DESCRIPTION
//   The Dir_Service IDL interface.
//
// = AUTHOR    
//   Kirthika Parameswaran <kirthika@cs.wustl.edu>
//
// ================================================================

interface Dir_Service
{
  // = TITLE
  //   The interface for Directory Service.
  //
  // = DESCRIPTION
  //   This interface can be used for any directory assistance.
  
  long tele_number (in string name);
  // A simple twoway operation, the idea is to verify that the
  // telephone number can be located.

  oneway void end_note ();
  // A simple oneway operation, which can be used before ending the
  // session.

  oneway void area_codes_info ();
  // A oneway operation which describes the area codes.
  
  void shutdown ();
  // Shutdown the server.
};