summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Security/SecurityLevel1/SLevel1_Test.idl
blob: e8d642c39b2fe391a8ce7494b3a1e856344662d8 (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 SLevel1_Test.idl
 *
 * $Id$
 *
 * IDL fot the Security Level 1 test.
 *
 * @author Priyanka Gontla <pgontla@doc.ece.uci.edu>
 */
//=============================================================================


interface SLevel1_Server
{
  /// 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 to authorize access to a client.
  boolean authorize_level1 ();

  /// Shutdown the server.
  oneway void shutdown ();

};