|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use HttpServletRequest | |
javax.servlet.http |
Uses of HttpServletRequest in javax.servlet.http |
Methods in javax.servlet.http with parameters of type HttpServletRequest | |
static java.lang.StringBuffer |
HttpUtils.getRequestURL(HttpServletRequest req)
Reconstructs the URL used by the client used to make the request. |
protected void |
HttpServlet.doGet(HttpServletRequest req,
HttpServletResponse resp)
Performs the HTTP GET operation; the default implementation reports an HTTP BAD_REQUEST error. |
protected long |
HttpServlet.getLastModified(HttpServletRequest req)
Gets the time the requested entity was last modified; the default implementation returns a negative number, indicating that the modification time is unknown and hence should not be used for conditional GET operations or for other cache control operations as this implementation will always return the contents. |
protected void |
HttpServlet.doPost(HttpServletRequest req,
HttpServletResponse resp)
Performs the HTTP POST operation; the default implementation reports an HTTP BAD_REQUEST error. |
protected void |
HttpServlet.doPut(HttpServletRequest req,
HttpServletResponse resp)
Performs the HTTP PUT operation; the default implementation reports an HTTP BAD_REQUEST error. |
protected void |
HttpServlet.doDelete(HttpServletRequest req,
HttpServletResponse resp)
Performs the HTTP DELETE operation; the default implementation reports an HTTP BAD_REQUEST error. |
protected void |
HttpServlet.doOptions(HttpServletRequest req,
HttpServletResponse resp)
Performs the HTTP OPTIONS operation; the default implementation of this method automatically determines what HTTP Options are supported. |
protected void |
HttpServlet.doTrace(HttpServletRequest req,
HttpServletResponse resp)
Performs the HTTP TRACE operation; the default implementation of this method causes a response with a message containing all of the headers sent in the trace request. |
protected void |
HttpServlet.service(HttpServletRequest req,
HttpServletResponse resp)
This is an HTTP-specific version of the Servlet.service method, which accepts HTTP specific
parameters. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |