KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > remoting > ServerInterceptor


1
2 /*
3  * JBoss, the OpenSource J2EE webOS
4  *
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.java
14  *
15  *
16  * Created: Fri May 2 11:10:59 2003
17  *
18  * @author <a HREF="mailto:d_jencks@users.sourceforge.net">David Jencks</a>
19  * @version 1.0
20  */

21
22 public interface ServerInterceptor
23 {
24    Object JavaDoc invoke(ServerInterceptorChain.InterceptorIterator iterator, InvocationRequest invocation) throws Throwable JavaDoc;
25
26    ServerInterceptor getInstance();
27
28 }// ServerInterceptor
29
Popular Tags