Package | Description |
---|---|
javax.servlet | |
javax.servlet.http | |
winstone | |
winstone.auth |
Modifier and Type | Class and Description |
---|---|
class |
ServletRequestWrapper
Wraps a servlet request object using the decorator pattern.
|
Modifier and Type | Method and Description |
---|---|
ServletRequest |
ServletRequestWrapper.getRequest() |
ServletRequest |
ServletRequestEvent.getServletRequest() |
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) |
void |
Servlet.service(ServletRequest req,
ServletResponse res) |
abstract void |
GenericServlet.service(ServletRequest req,
ServletResponse res) |
void |
ServletRequestWrapper.setRequest(ServletRequest request) |
Constructor and Description |
---|
ServletRequestAttributeEvent(ServletContext sc,
ServletRequest request,
java.lang.String name,
java.lang.Object value) |
ServletRequestEvent(ServletContext sc,
ServletRequest request) |
ServletRequestWrapper(ServletRequest request) |
Modifier and Type | Interface and Description |
---|---|
interface |
HttpServletRequest
Interface definition for http requests.
|
Modifier and Type | Class and Description |
---|---|
class |
HttpServletRequestWrapper
Wraps HttpServletRequest objects in a decorator pattern
|
Modifier and Type | Method and Description |
---|---|
void |
HttpServlet.service(ServletRequest request,
ServletResponse response) |
void |
HttpServletRequestWrapper.setRequest(ServletRequest request) |
Modifier and Type | Class and Description |
---|---|
class |
WinstoneRequest
Implements the request interface required by the servlet spec.
|
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 WinstoneRequest |
RequestDispatcher.getUnwrappedRequest(ServletRequest request)
Unwrap back to the original container allocated request 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 | Class and Description |
---|---|
class |
RetryRequestWrapper
This is used by the ACL filter to allow a retry by using a key lookup
on old request.
|
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.
|
Constructor and Description |
---|
RetryRequestParams(ServletRequest request)
Constructor - this populates the wrapper from the object in session
|
Copyright © 2014. All Rights Reserved.