public interface HttpServletContainer
HttpServlet
.Modifier and Type | Method and Description |
---|---|
void |
include(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Includes the servicing of contained
HttpServlet on the inputs. |
void |
service(ServerHttpConnection connection,
HttpRequestState attributes,
HttpSession session,
HttpServletSecurity security,
TaskContext<?,?,?> taskContext,
ServicerMapping mapping)
Services the
HttpRequest of the ServerHttpConnection . |
void service(ServerHttpConnection connection, HttpRequestState attributes, HttpSession session, HttpServletSecurity security, TaskContext<?,?,?> taskContext, ServicerMapping mapping) throws javax.servlet.ServletException, IOException
HttpRequest
of the ServerHttpConnection
.connection
- ServerHttpConnection
containing the
HttpRequest
to service.attributes
- HttpRequestState
.session
- HttpSession
for the HttpRequest
.security
- HttpServletSecurity
. May be null
if
anonymous HttpRequest
.taskContext
- TaskContext
to allow access to OfficeFloor
capabilities.mapping
- ServicerMapping
that mapped the HttpRequest
to
the HttpServlet
. May be null
if not
mapped.javax.servlet.ServletException
- As per HttpServlet
API.IOException
- As per HttpServlet
API.void include(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws javax.servlet.ServletException, IOException
HttpServlet
on the inputs.request
- HttpServletRequest
.response
- HttpServletResponse
.javax.servlet.ServletException
- As per HttpServlet
API.IOException
- As per HttpServlet
API.Copyright © 2005–2016. All rights reserved.