Package | Description |
---|---|
javax.servlet | |
javax.servlet.http | |
winstone | |
winstone.auth | |
winstone.invoker |
Modifier and Type | Class and Description |
---|---|
class |
UnavailableException
Thrown if a servlet is permanently or temporarily unavailable
|
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) |
Servlet |
ServletContext.getServlet(java.lang.String name)
Deprecated.
As of Java Servlet API 2.1, with no direct replacement.
|
void |
RequestDispatcher.include(ServletRequest request,
ServletResponse response) |
void |
GenericServlet.init() |
void |
Filter.init(FilterConfig filterConfig) |
void |
Servlet.init(ServletConfig config) |
void |
GenericServlet.init(ServletConfig config) |
void |
Servlet.service(ServletRequest req,
ServletResponse res) |
abstract void |
GenericServlet.service(ServletRequest req,
ServletResponse res) |
Modifier and Type | Method and Description |
---|---|
protected void |
HttpServlet.doDelete(HttpServletRequest req,
HttpServletResponse resp) |
protected void |
HttpServlet.doGet(HttpServletRequest req,
HttpServletResponse resp) |
protected void |
HttpServlet.doHead(HttpServletRequest req,
HttpServletResponse resp) |
protected void |
HttpServlet.doOptions(HttpServletRequest req,
HttpServletResponse resp) |
protected void |
HttpServlet.doPost(HttpServletRequest req,
HttpServletResponse resp) |
protected void |
HttpServlet.doPut(HttpServletRequest req,
HttpServletResponse resp) |
protected void |
HttpServlet.doTrace(HttpServletRequest req,
HttpServletResponse resp) |
protected void |
HttpServlet.service(HttpServletRequest request,
HttpServletResponse response) |
void |
HttpServlet.service(ServletRequest request,
ServletResponse response) |
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 |
StaticResourceServlet.doGet(HttpServletRequest request,
HttpServletResponse response) |
void |
StaticResourceServlet.doPost(HttpServletRequest request,
HttpServletResponse response) |
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.
|
Filter |
FilterConfiguration.getFilter()
Implements the first-time-init of an instance, and wraps it in a
dispatcher.
|
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.
|
void |
StaticResourceServlet.init(ServletConfig config) |
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 |
---|---|
protected boolean |
BaseAuthenticationHandler.doRoleCheck(HttpServletRequest request,
HttpServletResponse response,
java.lang.String pathRequested) |
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.
|
protected abstract void |
BaseAuthenticationHandler.requestAuthentication(HttpServletRequest request,
HttpServletResponse response,
java.lang.String pathRequested)
The actual auth request implementation.
|
protected void |
FormAuthenticationHandler.requestAuthentication(HttpServletRequest request,
HttpServletResponse response,
java.lang.String pathRequested)
Call this once we know that we need to authenticate
|
protected abstract boolean |
BaseAuthenticationHandler.validatePossibleAuthenticationResponse(HttpServletRequest request,
HttpServletResponse response,
java.lang.String pathRequested)
Handling the (possible) response
|
protected boolean |
FormAuthenticationHandler.validatePossibleAuthenticationResponse(HttpServletRequest request,
HttpServletResponse response,
java.lang.String pathRequested)
Check the response - is it a response to the login page ?
|
Modifier and Type | Method and Description |
---|---|
protected void |
InvokerServlet.doGet(HttpServletRequest req,
HttpServletResponse rsp) |
protected void |
InvokerServlet.doPost(HttpServletRequest req,
HttpServletResponse rsp) |
void |
InvokerServlet.init(ServletConfig config)
Set up a blank map of servlet configuration instances
|
Copyright © 2012. All Rights Reserved.