www.pudn.com > project.rar > Interceptor.java


package cn.com.iaspec.workflow.client.web.action.base; 
 
import javax.servlet.http.*; 
import org.apache.struts.action.*; 
 
public interface Interceptor{ 
  public ActionForward before(ActionMapping mapping,HttpServletRequest request, 
      String methodName) 
      throws Exception; 
 
  public void after(HttpServletRequest request,String methodName) 
      throws Exception; 
}