cn.khthink.easyapi.action.RequestData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of EasyApi Show documentation
Show all versions of EasyApi Show documentation
A RESTFUL Framework for JavaWeb
The newest version!
package cn.khthink.easyapi.action;
import com.alibaba.fastjson.JSONObject;
import javax.servlet.http.HttpServletRequest;
import java.io.IOException;
/**
* 请求数据
*
* @author kh
*/
public interface RequestData {
/**
* 获取请求数据
*
* @param request servlet请求
* @return JSONObject
* @throws IOException IO异常
*/
JSONObject getDatas(HttpServletRequest request) throws IOException;
}