com.ibm.wsspi.webcontainer

Interface RequestProcessor

  • All Known Subinterfaces:
    IServletWrapper
    All Known Implementing Classes:
    GenericServletWrapper, com.ibm.ws.webcontainer.extension.WebExtensionProcessor, WebExtensionProcessor


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

      Methods 
      Modifier and Type Method and Description
      java.lang.String getName() 
      void handleRequest(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res) 
      boolean isInternal() 
    • Method Detail

      • handleRequest

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

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

        java.lang.String getName()