public interface HttpServletServicer
Modifier and Type | Method and Description |
---|---|
String[] |
getServletMappings()
Obtains the mappings that are handled by this
HttpServletServicer . |
String |
getServletName()
Obtains the name of this
HttpServletServicer . |
void |
include(OfficeServletContext context,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Includes the content from this
HttpServlet . |
String getServletName()
Obtains the name of this HttpServletServicer
.
This will be used to find this HttpServletServicer
by name.
HttpServletServicer
name.String[] getServletMappings()
Obtains the mappings that are handled by this HttpServletServicer
.
The mappings are of the form:
/some/path.extension
: for exact mapping (extension is
optional)/wild/card/*
: for path wild card mapping*.extension
: for extension mapping
This follows the Servlet
specification in regards to mappings.
HttpServletServicer
.ServicerMapper
void include(OfficeServletContext context, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws javax.servlet.ServletException, IOException
HttpServlet
.context
- OfficeServletContext
.request
- HttpServletRequest
.response
- HttpServletResponse
.javax.servlet.ServletException
- As per RequestDispatcher
.IOException
- As per RequestDispatcher
.Copyright © 2005–2016. All rights reserved.