Uses of Interface javax.servlet.http.HttpServletRequest

Uses in package javax.servlet.http

Classes implementing javax.servlet.http.HttpServletRequest

class
Provides a convenient implementation of the HttpServletRequest interface that can be subclassed by developers wishing to adapt the request to a Servlet.

Constructors with parameter type javax.servlet.http.HttpServletRequest

Constructs a request object wrapping the given request.

Methods with parameter type javax.servlet.http.HttpServletRequest

void
Called by the server (via the service method) to allow a servlet to handle a DELETE request.
void
Called by the server (via the service method) to allow a servlet to handle a GET request.
void
Receives an HTTP HEAD request from the protected service method and handles the request.
void
Called by the server (via the service method) to allow a servlet to handle a OPTIONS request.
void
Called by the server (via the service method) to allow a servlet to handle a POST request.
void
Called by the server (via the service method) to allow a servlet to handle a PUT request.
void
Called by the server (via the service method) to allow a servlet to handle a TRACE request.
long
Returns the time the HttpServletRequest object was last modified, in milliseconds since midnight January 1, 1970 GMT.
StringBuffer
Reconstructs the URL the client used to make the request, using information in the HttpServletRequest object.
void
Receives standard HTTP requests from the public service method and dispatches them to the doXXX methods defined in this class.

Copyright © 1999-2002 The Apache Software Foundation. All Rights Reserved.