|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ServletResponse | |
|---|---|
| javax.servlet | |
| javax.servlet.http | |
| Uses of ServletResponse in javax.servlet |
|---|
| Methods in javax.servlet with parameters of type ServletResponse | |
|---|---|
void |
RequestDispatcher.forward(ServletRequest request,
ServletResponse response)
Forwards a request from a servlet to another resource (servlet, JSP file, or HTML file) on the server. |
void |
RequestDispatcher.include(ServletRequest request,
ServletResponse response)
Includes the content of a resource (servlet, JSP page, HTML file) in the response. |
void |
Servlet.service(ServletRequest req,
ServletResponse res)
Called by the servlet container to allow the servlet to respond to a request. |
abstract void |
GenericServlet.service(ServletRequest req,
ServletResponse res)
Called by the servlet container to allow the servlet to respond to a request. |
| Uses of ServletResponse in javax.servlet.http |
|---|
| Subinterfaces of ServletResponse in javax.servlet.http | |
|---|---|
interface |
HttpServletResponse
Extends the ServletResponse interface to provide HTTP-specific
functionality in sending a response. |
| Methods in javax.servlet.http with parameters of type ServletResponse | |
|---|---|
void |
HttpServlet.service(ServletRequest req,
ServletResponse res)
Dispatches client requests to the protected service method. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||