Frames | No Frames |
Classes implementing javax.servlet.http.HttpServletResponse | |
class |
Provides a convenient implementation of the HttpServletResponse interface that
can be subclassed by developers wishing to adapt the response from a Servlet. |
Constructors with parameter type javax.servlet.http.HttpServletResponse | |
Constructs a response adaptor wrapping the given response. |
Methods with parameter type javax.servlet.http.HttpServletResponse | |
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. |
void |
Receives standard HTTP requests from the public
service method and dispatches
them to the do XXX methods defined in
this class. |