1 2 /*3 * JBoss, the OpenSource J2EE webOS4 *5 * Distributable under LGPL license.6 * See terms of license at gnu.org.7 *8 */9 10 package org.jboss.remoting;11 12 /**13 * ServerInterceptor.java14 *15 *16 * Created: Fri May 2 11:10:59 200317 *18 * @author <a HREF="mailto:d_jencks@users.sourceforge.net">David Jencks</a>19 * @version 1.020 */21 22 public interface ServerInterceptor23 {24 Object invoke(ServerInterceptorChain.InterceptorIterator iterator, InvocationRequest invocation) throws Throwable ;25 26 ServerInterceptor getInstance();27 28 }// ServerInterceptor29