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