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 8 package com.sun.corba.se.spi.legacy.interceptor; 9 10 import com.sun.corba.se.spi.orb.ORB ; 11 12 /** The interface defines an extension to the standard ORBInitInfo 13 * that gives access to the ORB being initialized. Interceptors run 14 * as the last stage of initialization of the ORB, so the ORB 15 * instance returned by getORB is fully initialized. Note that 16 * this facility eventually shows up post-CORBA 3.0 as a result 17 * of the resolution of OMG core issue on accessing the ORB from 18 * local objects. 19 */ 20 public interface ORBInitInfoExt 21 { 22 ORB getORB() ; 23 } 24