atg.repository.seo
Class MappedJumpServlet

java.lang.Object
  extended by atg.servlet.GenericServletService
      extended by atg.repository.seo.MappedJumpServlet
All Implemented Interfaces:
javax.servlet.Servlet

public class MappedJumpServlet
extends GenericServletService

Front-end to the 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.


Field Summary
static java.lang.String CLASS_VERSION
          Class version string
 
Constructor Summary
MappedJumpServlet()
           
 
Method Summary
 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)
           
 
Methods inherited from class atg.servlet.GenericServletService
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, stopService
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

CLASS_VERSION

public static java.lang.String CLASS_VERSION
Class version string

Constructor Detail

MappedJumpServlet

public MappedJumpServlet()
Method Detail

getJumpServlet

public JumpServlet getJumpServlet()
Returns:
The SEO JumpServlet.

setJumpServlet

public void setJumpServlet(JumpServlet pJumpServlet)
Parameters:
jumpServlet - The SEO jump servlet to set.

service

public void service(javax.servlet.ServletRequest pServletRequest,
                    javax.servlet.ServletResponse pServletResponse)
             throws java.io.IOException,
                    javax.servlet.ServletException
Description copied from class: GenericServletService
Called by the web container to indicate that a servlet should service a request/response

Specified by:
service in interface javax.servlet.Servlet
Overrides:
service in class GenericServletService
Parameters:
pServletRequest - the servlet request
pServletResponse - the servlet response
Throws:
java.io.IOException - when an i/o error occurs
javax.servlet.ServletException - - when an error occurs during processing of this request/response
See Also:
Called 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.