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

com.github.andyshaox.servlet.mapping.FindingMapping Maven / Gradle / Ivy

There is a newer version: 3.2.10.RELEASE
Show newest version
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; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy