| Package | Description |
|---|---|
| javax.servlet.http | |
| javax.servlet.jsp |
| Modifier and Type | Class and Description |
|---|---|
class |
HttpServletRequestWrapper
Wraps a servlet request in another request.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
HttpServlet.doDelete(HttpServletRequest req,
HttpServletResponse res)
Process a DELETE request
|
protected void |
HttpServlet.doGet(HttpServletRequest req,
HttpServletResponse res)
Process a GET or HEAD request
|
protected void |
HttpServlet.doHead(HttpServletRequest req,
HttpServletResponse res)
Process a HEAD request.
|
protected void |
HttpServlet.doOptions(HttpServletRequest req,
HttpServletResponse res)
Process an OPTIONS request
|
protected void |
HttpServlet.doPost(HttpServletRequest req,
HttpServletResponse res)
Process a POST request
|
protected void |
HttpServlet.doPut(HttpServletRequest req,
HttpServletResponse res)
Process a PUT request
|
protected void |
HttpServlet.doTrace(HttpServletRequest req,
HttpServletResponse res)
Process a TRACE request
|
protected long |
HttpServlet.getLastModified(HttpServletRequest req)
Returns the last-modified time for the page for caching.
|
static java.lang.StringBuffer |
HttpUtils.getRequestURL(HttpServletRequest req)
Deprecated.
Converts the request back to an original request URL.
|
protected void |
HttpServlet.service(HttpServletRequest req,
HttpServletResponse res)
Services a HTTP request.
|
| Constructor and Description |
|---|
HttpServletRequestWrapper(HttpServletRequest request)
Creates a new request wrapper
|
| Modifier and Type | Method and Description |
|---|---|
void |
HttpJspPage._jspService(HttpServletRequest request,
HttpServletResponse response)
The main service method for a JSP page.
|