1. /*
  2. * @(#)ORBInitInfoExt.java 1.3 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package com.sun.corba.se.spi.legacy.interceptor;
  8. import com.sun.corba.se.spi.orb.ORB ;
  9. /** The interface defines an extension to the standard ORBInitInfo
  10. * that gives access to the ORB being initialized. Interceptors run
  11. * as the last stage of initialization of the ORB, so the ORB
  12. * instance returned by getORB is fully initialized. Note that
  13. * this facility eventually shows up post-CORBA 3.0 as a result
  14. * of the resolution of OMG core issue on accessing the ORB from
  15. * local objects.
  16. */
  17. public interface ORBInitInfoExt
  18. {
  19. ORB getORB() ;
  20. }