Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tao / PortableServer / POAManager.pidl
blobd2282ab51396056a359e8491b086a14c42ef9cda
1 /**
2  * @file POAManager.pidl
3  *
4  * @brief PIDL source for the PortableServer module.
5  */
7 #ifndef _PORTABLESERVER_POA_MANAGER_IDL_
8 #define _PORTABLESERVER_POA_MANAGER_IDL_
10 #pragma prefix "omg.org"
12 module PortableServer
14 # pragma version PortableServer 2.3
16   // POAManager interface
17   local interface POAManager
18   {
19     exception AdapterInactive {};
21     enum State
22     {
23       HOLDING,
24       ACTIVE,
25       DISCARDING,
26       INACTIVE
27     };
29     void activate ()
30       raises(AdapterInactive);
32 #if !defined (CORBA_E_COMPACT) && !defined (CORBA_E_MICRO) && !defined (TAO_HAS_MINIMUM_POA)
33     void hold_requests (in boolean wait_for_completion)
34       raises(AdapterInactive);
36     void discard_requests (in boolean wait_for_completion)
37       raises(AdapterInactive);
39     void deactivate (in boolean etherealize_objects,
40                      in boolean wait_for_completion);
41 #endif
43     State get_state ();
45     string get_id();
46   };
49 #endif // _PORTABLESERVER_POA_MANAGER_IDL_