| Package | Description |
|---|---|
| javax.servlet | |
| javax.servlet.http | |
| winstone | |
| winstone.auth |
| Modifier and Type | Class and Description |
|---|---|
class |
ServletResponseWrapper
Wraps a servlet response object using the decorator pattern
|
| Modifier and Type | Method and Description |
|---|---|
ServletResponse |
ServletResponseWrapper.getResponse() |
| Modifier and Type | Method and Description |
|---|---|
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) |
abstract void |
GenericServlet.service(ServletRequest req,
ServletResponse res) |
void |
Servlet.service(ServletRequest req,
ServletResponse res) |
void |
ServletResponseWrapper.setResponse(ServletResponse response) |
| Constructor and Description |
|---|
ServletResponseWrapper(ServletResponse response) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
HttpServletResponse
Interface definition for http response objects.
|
| Modifier and Type | Class and Description |
|---|---|
class |
HttpServletResponseWrapper
Wraps HttpServletResponse objects in a decorator pattern
|
| Modifier and Type | Method and Description |
|---|---|
void |
HttpServlet.service(ServletRequest request,
ServletResponse response) |
void |
HttpServletResponseWrapper.setResponse(ServletResponse response) |
| Modifier and Type | Class and Description |
|---|---|
class |
WinstoneResponse
Response for servlet
|
| Modifier and Type | Method and Description |
|---|---|
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) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
BaseAuthenticationHandler.processAuthentication(ServletRequest inRequest,
ServletResponse inResponse,
java.lang.String pathRequested)
Evaluates any authentication constraints, intercepting if auth is
required.
|
boolean |
FormAuthenticationHandler.processAuthentication(ServletRequest request,
ServletResponse response,
java.lang.String pathRequested)
Evaluates any authentication constraints, intercepting if auth is
required.
|
Copyright © 2013. All Rights Reserved.