All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.coder.struts.support.ActionIntercepter Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package cn.coder.struts.support;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public abstract class ActionIntercepter {
	/**
	 * 请求拦截器
	 * 
	 * @param req
	 *            请求
	 * @param res
	 *            响应
	 * @return 是否通过
	 */
	public abstract boolean intercept(HttpServletRequest req, HttpServletResponse res);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy