01: /***** Copyright (c) 1999 Object Management Group. Unlimited rights to
02: duplicate and use this code are hereby granted provided that this
03: copyright notice is included.
04: *****/package org.omg.PortableServer;
05:
06: public interface POAManagerOperations {
07:
08: public void activate()
09: throws org.omg.PortableServer.POAManagerPackage.AdapterInactive;
10:
11: public void hold_requests(boolean wait_for_completion)
12: throws org.omg.PortableServer.POAManagerPackage.AdapterInactive;
13:
14: public void discard_requests(boolean wait_for_completion)
15: throws org.omg.PortableServer.POAManagerPackage.AdapterInactive;
16:
17: public void deactivate(boolean etherealize_objects,
18: boolean wait_for_completion)
19: throws org.omg.PortableServer.POAManagerPackage.AdapterInactive;
20:
21: public org.omg.PortableServer.POAManagerPackage.State get_state();
22:
23: }
|