1 /* 2 * @(#)InitialServerRequestDispatcher.java 1.7 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.protocol; 9 10 import com.sun.corba.se.spi.resolver.Resolver ; 11 12 /** InitialServerRequestDispatcher is a specialized version of a ServerRequestDispatcher 13 * that provides an initialization method. This delegate is used 14 * to implement bootstrapping of initial object references. 15 */ 16 public interface InitialServerRequestDispatcher 17 extends CorbaServerRequestDispatcher 18 { 19 /** Plug in the resolver that this InitialServerRequestDispatcher should 20 * use in order to lookup or list initial name to object reference 21 * bindings. 22 */ 23 void init( Resolver resolver ) ; 24 } 25 26