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,
HttpServletRequest request,
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.ServicerMappervoid include(OfficeServletContext context, HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
HttpServlet.context - OfficeServletContext.request - HttpServletRequest.response - HttpServletResponse.ServletException - As per RequestDispatcher.IOException - As per RequestDispatcher.Copyright © 2005–2015. All rights reserved.