htmlfilterfactory.java

来自「一款Java实现的HTTP代理服务器」· Java 代码 · 共 20 行

JAVA
20
字号
package rabbit.filter;import rabbit.http.HttpHeader;import rabbit.proxy.Connection;/** A factory that creates HTMLFilters. * * @author <a href="mailto:robo@khelekore.org">Robert Olofsson</a> */public interface HtmlFilterFactory {    /** Get a new HtmlFilter for the given request, response pair.     * @param con the Connection handling the request.     * @param request the actual request made.     * @param response the actual response being sent.     */    public HtmlFilter newFilter (Connection con, 				 HttpHeader request, 				 HttpHeader response);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?