|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ServletResponse | |
---|---|
javax.servlet | |
javax.servlet.http | |
winstone | |
winstone.auth |
Uses of ServletResponse in javax.servlet |
---|
Classes in javax.servlet that implement ServletResponse | |
---|---|
class |
ServletResponseWrapper
Wraps a servlet response object using the decorator pattern |
Methods in javax.servlet that return ServletResponse | |
---|---|
ServletResponse |
ServletResponseWrapper.getResponse()
|
Methods in javax.servlet with parameters of type ServletResponse | |
---|---|
void |
FilterChain.doFilter(ServletRequest request,
ServletResponse response)
|
void |
Filter.doFilter(ServletRequest request,
ServletResponse response,
FilterChain chain)
|
void |
RequestDispatcher.forward(ServletRequest request,
ServletResponse response)
|
void |
RequestDispatcher.include(ServletRequest request,
ServletResponse response)
|
void |
Servlet.service(ServletRequest req,
ServletResponse res)
|
abstract void |
GenericServlet.service(ServletRequest req,
ServletResponse res)
|
void |
ServletResponseWrapper.setResponse(ServletResponse response)
|
Constructors in javax.servlet with parameters of type ServletResponse | |
---|---|
ServletResponseWrapper(ServletResponse response)
|
Uses of ServletResponse in javax.servlet.http |
---|
Subinterfaces of ServletResponse in javax.servlet.http | |
---|---|
interface |
HttpServletResponse
Interface definition for http response objects. |
Classes in javax.servlet.http that implement ServletResponse | |
---|---|
class |
HttpServletResponseWrapper
Wraps HttpServletResponse objects in a decorator pattern |
Methods in javax.servlet.http with parameters of type ServletResponse | |
---|---|
void |
HttpServlet.service(ServletRequest request,
ServletResponse response)
|
void |
HttpServletResponseWrapper.setResponse(ServletResponse response)
|
Uses of ServletResponse in winstone |
---|
Classes in winstone that implement ServletResponse | |
---|---|
class |
WinstoneResponse
Response for servlet |
Methods in winstone with parameters of type ServletResponse | |
---|---|
void |
RequestDispatcher.doFilter(ServletRequest request,
ServletResponse response)
Handles the processing of the chain of filters, so that we process them all, then pass on to the main servlet |
void |
FilterConfiguration.execute(ServletRequest request,
ServletResponse response,
FilterChain chain)
|
void |
ServletConfiguration.execute(ServletRequest request,
ServletResponse response,
java.lang.String requestURI)
|
void |
RequestDispatcher.forward(ServletRequest request,
ServletResponse response)
Forwards to another servlet, and when it's finished executing that other servlet, cut off execution. |
protected WinstoneResponse |
RequestDispatcher.getUnwrappedResponse(ServletResponse response)
Unwrap back to the original container allocated response object |
void |
RequestDispatcher.include(ServletRequest request,
ServletResponse response)
Includes the execution of a servlet into the current request Note this method enters itself twice: once with the initial call, and once again when all the filters have completed. |
boolean |
AuthenticationHandler.processAuthentication(ServletRequest request,
ServletResponse response,
java.lang.String pathRequested)
Evaluates any authentication constraints, intercepting if auth is required. |
void |
ErrorServlet.service(ServletRequest request,
ServletResponse response)
|
Uses of ServletResponse in winstone.auth |
---|
Methods in winstone.auth with parameters of type ServletResponse | |
---|---|
boolean |
FormAuthenticationHandler.processAuthentication(ServletRequest request,
ServletResponse response,
java.lang.String pathRequested)
Evaluates any authentication constraints, intercepting if auth is required. |
boolean |
BaseAuthenticationHandler.processAuthentication(ServletRequest inRequest,
ServletResponse inResponse,
java.lang.String pathRequested)
Evaluates any authentication constraints, intercepting if auth is required. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |