1. package org.omg.PortableServer;
  2. /**
  3. * org/omg/PortableServer/AdapterActivatorOperations.java .
  4. * Generated by the IDL-to-Java compiler (portable), version "3.2"
  5. * from ../../../../src/share/classes/org/omg/PortableServer/poa.idl
  6. * Wednesday, September 15, 2004 10:28:40 AM GMT
  7. */
  8. /**
  9. * An adapter activator supplies a POA with the ability
  10. * to create child POAs on demand, as a side-effect of
  11. * receiving a request that names the child POA
  12. * (or one of its children), or when find_POA is called
  13. * with an activate parameter value of TRUE.
  14. */
  15. public interface AdapterActivatorOperations
  16. {
  17. /**
  18. * This operation is invoked when the ORB receives
  19. * a request for an object reference that identifies
  20. * a target POA that does not exist. The ORB invokes
  21. * this operation once for each POA that must be
  22. * created in order for the target POA to exist.
  23. * @param parent indicates the parent POA for the POA
  24. * that needs to be created.
  25. * @param name identifies the name of the POA relative to
  26. * the parent.
  27. * @return returns TRUE if the POA was created or FALSE
  28. * otherwise.
  29. */
  30. boolean unknown_adapter (org.omg.PortableServer.POA parent, String name);
  31. } // interface AdapterActivatorOperations