Class ServletSecondDelegate


  • public abstract class ServletSecondDelegate
    extends Object
    This is the delegate of the ServletDelegate, which allows some implementation of the ServletDelegate to be overwritten. Though it screams for a better name. ServletDelegateDelegate??

    S1AS will extend this class provide its implementation of the ServletDelegate behavior.

    • Constructor Detail

      • ServletSecondDelegate

        public ServletSecondDelegate()
    • Method Detail

      • doGet

        public void doGet​(javax.servlet.http.HttpServletRequest request,
                          javax.servlet.http.HttpServletResponse response)
                   throws javax.servlet.ServletException
        Throws:
        javax.servlet.ServletException
      • postInit

        public void postInit​(javax.servlet.ServletConfig config)
                      throws javax.servlet.ServletException
        This method should be called after ServletDelegate.init() is done. Any initialization needed by the second delegate should be done by overriding this method, i.e. the implementation of ServletDelegate should call _secondDelegate.postInit() at the end of its init() call.
        Throws:
        javax.servlet.ServletException
        See Also:
        ServletDelegate
      • warnMissingContextInformation

        public void warnMissingContextInformation()
      • createImplementorCache

        public ImplementorCache createImplementorCache​(javax.servlet.ServletConfig config)