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 intercept(ActionRequest actionRequest) throws Exception ;16 17 }18