Frames | No Frames |
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. |
Methods with parameter type javax.servlet.ServletResponse | |
PageContext | JspFactory.getPageContext(Servlet servlet, ServletRequest request, ServletResponse response, String errorPageURL, boolean needsSession, int buffer, boolean autoflush)
obtains an instance of an implementation dependent
javax.servlet.jsp.PageContext abstract class for the calling Servlet
and currently pending request and response. |
void | PageContext.initialize(Servlet servlet, ServletRequest request, ServletResponse response, String errorPageURL, boolean needsSession, int bufferSize, boolean autoFlush)
The initialize method is called to initialize an uninitialized PageContext
so that it may be used by a JSP Implementation class to service an
incoming request and response within it's _jspService() method. |
Methods with return type javax.servlet.ServletResponse | |
ServletResponse | The current value of the response object (a ServletResponse). |
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. |