requestinterface.java

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

JAVA
35
字号
// RequestInterface.java// $Id: RequestInterface.java,v 1.2 2000/08/16 21:37:53 ylafon Exp $// (c) COPYRIGHT MIT and INRIA, 1996.// Please first read the full copyright statement in file COPYRIGHT.htmlpackage org.w3c.tools.resources ;public interface RequestInterface {  /**   * FIXME doc   */  public void setState(String name, String state);  /**   * Get the URL path of the target resource.   */  public String getURLPath();  /**   * Return true is the request is internal.   * @return a boolean.   */  public boolean isInternal();  /**   * Get a "Bad request" reply.   * @return a ReplyInterface instance.   */  public ReplyInterface makeBadRequestReply();}

⌨️ 快捷键说明

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