|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ServletRequest | |
---|---|
javax.servlet | |
javax.servlet.http | |
winstone | |
winstone.auth |
Uses of ServletRequest in javax.servlet |
---|
Classes in javax.servlet that implement ServletRequest | |
---|---|
class |
ServletRequestWrapper
Wraps a servlet request object using the decorator pattern. |
Methods in javax.servlet that return ServletRequest | |
---|---|
ServletRequest |
ServletRequestWrapper.getRequest()
|
ServletRequest |
ServletRequestEvent.getServletRequest()
|
Methods in javax.servlet with parameters of type ServletRequest | |
---|---|
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)
|
Constructors in javax.servlet with parameters of type ServletRequest | |
---|---|
ServletRequestAttributeEvent(ServletContext sc,
ServletRequest request,
java.lang.String name,
java.lang.Object value)
|
|
ServletRequestEvent(ServletContext sc,
ServletRequest request)
|
|
ServletRequestWrapper(ServletRequest request)
|
Uses of ServletRequest in javax.servlet.http |
---|
Subinterfaces of ServletRequest in javax.servlet.http | |
---|---|
interface |
HttpServletRequest
Interface definition for http requests. |
Classes in javax.servlet.http that implement ServletRequest | |
---|---|
class |
HttpServletRequestWrapper
Wraps HttpServletRequest objects in a decorator pattern |
Methods in javax.servlet.http with parameters of type ServletRequest | |
---|---|
void |
HttpServlet.service(ServletRequest request,
ServletResponse response)
|
void |
HttpServletRequestWrapper.setRequest(ServletRequest request)
|
Uses of ServletRequest in winstone |
---|
Classes in winstone that implement ServletRequest | |
---|---|
class |
WinstoneRequest
Implements the request interface required by the servlet spec. |
Methods in winstone with parameters of type ServletRequest | |
---|---|
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)
|
Uses of ServletRequest in winstone.auth |
---|
Classes in winstone.auth that implement ServletRequest | |
---|---|
class |
RetryRequestWrapper
This is used by the ACL filter to allow a retry by using a key lookup on old request. |
Methods in winstone.auth with parameters of type ServletRequest | |
---|---|
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. |
Constructors in winstone.auth with parameters of type ServletRequest | |
---|---|
RetryRequestParams(ServletRequest request)
Constructor - this populates the wrapper from the object in session |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |