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