| ServerInterceptor.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*
*/
package org.jboss.remoting;
/**
* ServerInterceptor.java
*
*
* Created: Fri May 2 11:10:59 2003
*
* @author <a href="mailto:d_jencks@users.sourceforge.net">David Jencks</a>
* @version 1.0
*/
public interface ServerInterceptor
{
Object invoke(ServerInterceptorChain.InterceptorIterator iterator, InvocationRequest invocation) throws Throwable;
ServerInterceptor getInstance();
}// ServerInterceptor
| ServerInterceptor.java |