public class MappedJumpServlet extends GenericServletService
JumpServlet servlet that is intended to be
used with third party application servers.
This servlet should have a <servlet> and
<servlet-mapping> entry in the application's web.xml
file.
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
CLASS_VERSION
Class version string
|
| Constructor and Description |
|---|
MappedJumpServlet() |
| Modifier and Type | Method and Description |
|---|---|
JumpServlet |
getJumpServlet() |
void |
service(javax.servlet.ServletRequest pServletRequest,
javax.servlet.ServletResponse pServletResponse)
Called by the web container to indicate that a servlet should
service a request/response
|
void |
setJumpServlet(JumpServlet pJumpServlet) |
destroy, getContext, getName, getServletConfig, getServletContext, getServletInfo, handleService, init, isLoggingDebug, isLoggingError, isLoggingInfo, isLoggingWarning, logDebug, logDebug, logDebug, logError, logError, logError, logInfo, logInfo, logInfo, logWarning, logWarning, logWarning, lookup, setLoggingDebug, setLoggingError, setLoggingInfo, setLoggingWarning, startService, stopServicepublic JumpServlet getJumpServlet()
public void setJumpServlet(JumpServlet pJumpServlet)
jumpServlet - The SEO jump servlet to set.public void service(javax.servlet.ServletRequest pServletRequest,
javax.servlet.ServletResponse pServletResponse)
throws java.io.IOException,
javax.servlet.ServletException
GenericServletServiceservice in interface javax.servlet.Servletservice in class GenericServletServicepServletRequest - the servlet requestpServletResponse - the servlet responsejava.io.IOException - when an i/o error occursjavax.servlet.ServletException - - when an error occurs during processing of this request/responseCalled by the web container to indicate that this servlet should service a request/response.
This will usually only be called because the request URI matches the
servlet-mapping for this servlet that has been defined in the web
application's web.xml configuration file.