/* * @(#)InitialServerRequestDispatcher.java 1.7 03/12/19 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package com.sun.corba.se.spi.protocol; import com.sun.corba.se.spi.resolver.Resolver ; /** InitialServerRequestDispatcher is a specialized version of a ServerRequestDispatcher * that provides an initialization method. This delegate is used * to implement bootstrapping of initial object references. */ public interface InitialServerRequestDispatcher extends CorbaServerRequestDispatcher { /** Plug in the resolver that this InitialServerRequestDispatcher should * use in order to lookup or list initial name to object reference * bindings. */ void init( Resolver resolver ) ; }