File:  [Public] / java / classes / org / w3c / tools / resources / RequestInterface.java
Revision 1.3: download - view: text, annotated - select for diffs
Fri Oct 18 13:42:26 2013 UTC (12 years, 2 months ago) by ylafon
Branches: MAIN
CVS tags: HEAD
generics + raw types + serializer

// RequestInterface.java
// $Id: RequestInterface.java,v 1.3 2013/10/18 13:42:26 ylafon Exp $
// (c) COPYRIGHT MIT and INRIA, 1996.
// Please first read the full copyright statement in file COPYRIGHT.html

package 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();

}



Webmaster