cn.ubibi.jettyboot.framework.rest.IReqParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jettyboot Show documentation
Show all versions of jettyboot Show documentation
jetty boot Library, simple mvc and data ORM framework
package cn.ubibi.jettyboot.framework.rest;
import javax.servlet.http.HttpServletRequest;
public interface IReqParser {
void doParse(ReqParams jettyBootReqParams, HttpServletRequest request, String path) throws Exception;
}