proprequestfilter.java

来自「很棒的web服务器源代码」· Java 代码 · 共 36 行

JAVA
36
字号
// RequestFilter.java// $Id: PropRequestFilter.java,v 1.5 1998/08/13 16:29:13 bmahe Exp $// (c) COPYRIGHT MIT and INRIA, 1996.// Please first read the full copyright statement in file COPYRIGHT.htmlpackage org.w3c.www.protocol.http;/** * The PropRequestFilter interface. * This interface extends the basic requestFilter interface, in order to  * allow the implementing filters to be set through the  * <code>org.w3c.www.protocol.http.filters</code> property. * <p>To set a PropRequestFilter through this property, you just need to * define the property to a <code>|</code> separated list of * PropRequestFilter compatible class. Upon initialization, the * HttpManager will read this property value, and <code>initialize</code> * all these filters in the global scope. */public interface PropRequestFilter extends RequestFilter {    /**     * Initialize this filter, using the provided manager.     * During initialization, it is up to the filter to install itself     * in the manager, by invoking the appropriate <code>setFilter</code>     * method.     * @param manager The HttpManager initializing the filter.     * @exception PropRequestFilterException If the filter couldn't be      * initialized properly.     */    public void initialize(HttpManager manager) 	throws PropRequestFilterException;}

⌨️ 快捷键说明

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