Interface RequestProcessor

All Known Subinterfaces:
ExtensionProcessor, IServletWrapper
All Known Implementing Classes:
DefaultExtensionProcessor, ExtHandshakeVHostExtensionProcessor, GenericServletWrapper, InvokerExtensionProcessor, WebExtensionProcessor, WebExtensionProcessor

public interface RequestProcessor
Interface that indicates that the implementation class is capable of processing ServletRequests.
  • Method Summary

    Modifier and Type
    Method
    Description
     
    void
    handleRequest(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res)
     
    boolean
     
  • Method Details

    • handleRequest

      void handleRequest(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res) throws Exception
      Parameters:
      Request - req
      Response - res@param req
      res -
      Throws:
      Exception
    • isInternal

      boolean isInternal()
      Returns:
      boolean Returns true if this request processor is for internal use only
    • getName

      String getName()