com.github.andyshaox.servlet.mapping.FindingMapping Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of GearEE Show documentation
Show all versions of GearEE Show documentation
Enhance and formating the coding of JDK
package com.github.andyshaox.servlet.mapping;
import java.io.IOException;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.github.andyshao.data.structure.Bitree;
/**
*
* Title:
* Descript:
* Copyright: Copryright(c) Dec 28, 2015
* Encoding:UNIX UTF-8
*
* @author Andy.Shao
*
*/
public interface FindingMapping {
/**
* find mapping
*
* @param config configure
* @param request request
* @param response response
* @param bitree Mapping information
* @return if cannot find out then return null
* @throws ServletException {@link ServletException}
* @throws IOException {@link IOException}
*/
public Mapping search(ServletConfig config , HttpServletRequest request , HttpServletResponse response , Bitree bitree) throws ServletException , IOException;
}