Frames | No Frames |
Classes implementing javax.servlet.ServletResponse | |
class |
Provides a convenient implementation of the HttpServletResponse interface that
can be subclassed by developers wishing to adapt the response from a Servlet. |
Methods with parameter type javax.servlet.ServletResponse | |
void |
Dispatches client requests to the protected
service method. |
Classes implementing javax.servlet.ServletResponse | |
class |
Provides a convenient implementation of the ServletResponse interface that
can be subclassed by developers wishing to adapt the response from a Servlet. |
Constructors with parameter type javax.servlet.ServletResponse | |
Creates a ServletResponse adaptor wrapping the given response object. |
Methods with parameter type javax.servlet.ServletResponse | |
void | Causes the next filter in the chain to be invoked, or if the calling filter is the last filter
in the chain, causes the resource at the end of the chain to be invoked. |
void | 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. |
void | Forwards a request from
a servlet to another resource (servlet, JSP file, or
HTML file) on the server. |
void |
Includes the content of a resource (servlet, JSP page,
HTML file) in the response. |
void | Called by the servlet container to allow the servlet to respond to
a request. |
void | Called by the servlet container to allow the servlet to respond to
a request. |
void | Sets the response being wrapped. |
Methods with return type javax.servlet.ServletResponse | |
ServletResponse | Return the wrapped ServletResponse object. |