| Package | Description |
|---|---|
| jakarta.servlet.http | |
| jakarta.servlet.jsp | |
| org.apache.jasper.runtime | |
| org.apache.jasper.servlet | |
| org.apache.jasper.tagplugins.jstl |
| Modifier and Type | Class and Description |
|---|---|
class |
HttpServletResponseWrapper
Provides a convenient implementation of the HttpServletResponse interface
that can be subclassed by developers wishing to adapt the response from a
Servlet.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
HttpServletRequestWrapper.authenticate(HttpServletResponse response)
Triggers the same authentication process as would be triggered if the
request is for a resource that is protected by a security constraint.
|
boolean |
HttpServletRequest.authenticate(HttpServletResponse response)
Triggers the same authentication process as would be triggered if the
request is for a resource that is protected by a security constraint.
|
protected void |
HttpServlet.doDelete(HttpServletRequest req,
HttpServletResponse resp)
Called by the server (via the
service method)
to allow a servlet to handle a DELETE request. |
protected void |
HttpFilter.doFilter(HttpServletRequest request,
HttpServletResponse response,
FilterChain chain)
The
doFilter method of the Filter is called by the container
each time a request/response pair is passed through the chain due to a
client request for a resource at the end of the chain. |
protected void |
HttpServlet.doGet(HttpServletRequest req,
HttpServletResponse resp)
Called by the server (via the
service method) to
allow a servlet to handle a GET request. |
protected void |
HttpServlet.doHead(HttpServletRequest req,
HttpServletResponse resp)
Receives an HTTP HEAD request from the protected
service method and handles the
request. |
protected void |
HttpServlet.doOptions(HttpServletRequest req,
HttpServletResponse resp)
Called by the server (via the
service method)
to allow a servlet to handle an OPTIONS request. |
protected void |
HttpServlet.doPost(HttpServletRequest req,
HttpServletResponse resp)
Called by the server (via the
service method)
to allow a servlet to handle a POST request. |
protected void |
HttpServlet.doPut(HttpServletRequest req,
HttpServletResponse resp)
Called by the server (via the
service method)
to allow a servlet to handle a PUT request. |
protected void |
HttpServlet.doTrace(HttpServletRequest req,
HttpServletResponse resp)
Called by the server (via the
service method)
to allow a servlet to handle a TRACE request. |
protected void |
HttpServlet.service(HttpServletRequest req,
HttpServletResponse resp)
Receives standard HTTP requests from the public
service method and dispatches
them to the doMethod methods defined in
this class. |
| Constructor and Description |
|---|
HttpServletResponseWrapper(HttpServletResponse response)
Constructs a response adaptor wrapping the given response.
|
| Modifier and Type | Method and Description |
|---|---|
void |
HttpJspPage._jspService(HttpServletRequest request,
HttpServletResponse response)
The _jspService()method corresponds to the body of the JSP page.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ServletResponseWrapperInclude
ServletResponseWrapper used by the JSP 'include' action.
|
| Modifier and Type | Method and Description |
|---|---|
abstract void |
HttpJspBase._jspService(HttpServletRequest request,
HttpServletResponse response) |
void |
HttpJspBase.service(HttpServletRequest request,
HttpServletResponse response)
Entry point into service.
|
| Modifier and Type | Method and Description |
|---|---|
void |
JspServlet.service(HttpServletRequest request,
HttpServletResponse response) |
void |
JspServletWrapper.service(HttpServletRequest request,
HttpServletResponse response,
boolean precompile) |
| Modifier and Type | Class and Description |
|---|---|
static class |
Util.ImportResponseWrapper
Wraps responses to allow us to retrieve results as Strings.
|
| Constructor and Description |
|---|
ImportResponseWrapper(HttpServletResponse arg0) |
Copyright © 2014–2021. All rights reserved.