Uses of Interface
javax.servlet.ServletResponse
-
Packages that use ServletResponse Package Description javax.servlet javax.servlet.http -
-
Uses of ServletResponse in javax.servlet
Classes in javax.servlet that implement ServletResponse Modifier and Type Class Description class
ServletResponseWrapper
Provides a convenient implementation of the ServletResponse interface that can be subclassed by developers wishing to adapt the response from a Servlet.Methods in javax.servlet that return ServletResponse Modifier and Type Method Description ServletResponse
AsyncContext. getResponse()
Gets the response that was used to initialize this AsyncContext by callingServletRequest.startAsync()
orServletRequest.startAsync(ServletRequest, ServletResponse)
.ServletResponse
ServletResponseWrapper. getResponse()
Return the wrapped ServletResponse object.ServletResponse
AsyncEvent. getSuppliedResponse()
Gets the ServletResponse from this AsyncEvent.Methods in javax.servlet with parameters of type ServletResponse Modifier and Type Method Description void
AsyncContext. addListener(AsyncListener listener, ServletRequest servletRequest, ServletResponse servletResponse)
Registers the givenAsyncListener
with the most recent asynchronous cycle that was started by a call to one of theServletRequest.startAsync()
methods.void
Filter. doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
ThedoFilter
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
FilterChain. doFilter(ServletRequest request, ServletResponse response)
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
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.boolean
ServletResponseWrapper. isWrapperFor(ServletResponse wrapped)
Checks (recursively) if this ServletResponseWrapper wraps the givenServletResponse
instance.abstract void
GenericServlet. service(ServletRequest req, ServletResponse res)
Called by the servlet container to allow the servlet to respond to a request.void
Servlet. service(ServletRequest req, ServletResponse res)
Called by the servlet container to allow the servlet to respond to a request.void
ServletResponseWrapper. setResponse(ServletResponse response)
Sets the response being wrapped.default AsyncContext
ServletRequest. startAsync(ServletRequest servletRequest, ServletResponse servletResponse)
Puts this request into asynchronous mode, and initializes itsAsyncContext
with the given request and response objects.AsyncContext
ServletRequestWrapper. startAsync(ServletRequest servletRequest, ServletResponse servletResponse)
The default behavior of this method is to invokeServletRequest.startAsync(ServletRequest, ServletResponse)
on the wrapped request object.Constructors in javax.servlet with parameters of type ServletResponse Constructor Description AsyncEvent(AsyncContext context, ServletRequest request, ServletResponse response)
Constructs an AsyncEvent from the given AsyncContext, ServletRequest, and ServletResponse.AsyncEvent(AsyncContext context, ServletRequest request, ServletResponse response, Throwable throwable)
Constructs an AsyncEvent from the given AsyncContext, ServletRequest, ServletResponse, and Throwable.ServletResponseWrapper(ServletResponse response)
Creates a ServletResponse adaptor wrapping the given response object. -
Uses of ServletResponse in javax.servlet.http
Subinterfaces of ServletResponse in javax.servlet.http Modifier and Type Interface Description interface
HttpServletResponse
Extends theServletResponse
interface to provide HTTP-specific functionality in sending a response.Classes in javax.servlet.http that implement ServletResponse Modifier and Type Class 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.Methods in javax.servlet.http with parameters of type ServletResponse Modifier and Type Method Description void
HttpFilter. doFilter(ServletRequest req, ServletResponse res, FilterChain chain)
ThedoFilter
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
HttpServlet. service(ServletRequest req, ServletResponse res)
Dispatches client requests to the protectedservice
method.
-