KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > PortableServer > AdapterActivatorOperations


1 package org.omg.PortableServer;
2
3
4 /**
5 * org/omg/PortableServer/AdapterActivatorOperations.java .
6 * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 * from ../../../../src/share/classes/org/omg/PortableServer/poa.idl
8 * Saturday, February 9, 2008 9:40:03 AM GMT
9 */

10
11
12 /**
13      * An adapter activator supplies a POA with the ability
14      * to create child POAs on demand, as a side-effect of
15      * receiving a request that names the child POA
16      * (or one of its children), or when find_POA is called
17      * with an activate parameter value of TRUE.
18      */

19 public interface AdapterActivatorOperations
20 {
21
22   /**
23      * This operation is invoked when the ORB receives
24      * a request for an object reference that identifies
25      * a target POA that does not exist. The ORB invokes
26      * this operation once for each POA that must be
27      * created in order for the target POA to exist.
28      * @param parent indicates the parent POA for the POA
29      * that needs to be created.
30      * @param name identifies the name of the POA relative to
31      * the parent.
32      * @return returns TRUE if the POA was created or FALSE
33      * otherwise.
34      */

35   boolean unknown_adapter (org.omg.PortableServer.POA JavaDoc parent, String JavaDoc name);
36 } // interface AdapterActivatorOperations
37
Popular Tags