1. /*
  2. * @(#)ServerRequestDispatcher.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.pept.protocol;
  8. import com.sun.corba.se.pept.protocol.MessageMediator;
  9. /**
  10. * <code>ServerRequestDispatcher</code> coordinates the request (and possible
  11. * response) processing for a specific <em>protocol</em>.
  12. * @author Harold Carr
  13. */
  14. public interface ServerRequestDispatcher
  15. {
  16. /**
  17. * This method coordinates the processing of a message received
  18. * on the server side.
  19. *
  20. * For example, this may involve finding an "object adapter" which
  21. * would return Ties/Servants to handle the request.
  22. */
  23. public void dispatch(MessageMediator messageMediator);
  24. }
  25. // End of file.