KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jodd > madvoc > interceptor > ActionInterceptor


1 // Copyright (c) 2003-2007, Jodd Team (jodd.sf.net). All Rights Reserved.
2

3 package jodd.madvoc.interceptor;
4
5 import jodd.madvoc.ActionRequest;
6
7 /**
8  * Action interceptor interface.
9  */

10 public interface ActionInterceptor {
11
12     /**
13      * Intercepts action requests.
14      */

15     public String JavaDoc intercept(ActionRequest actionRequest) throws Exception JavaDoc;
16     
17 }
18
Popular Tags