Class Dispatcher
java.lang.Object
org.apache.felix.http.base.internal.dispatch.Dispatcher
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoiddispatch(jakarta.servlet.http.HttpServletRequest req, jakarta.servlet.http.HttpServletResponse res) Responsible for dispatching a given request to the actual applicable servlet and/or filters in the local registry.voidsetWhiteboardManager(@Nullable WhiteboardManager service) Set or unset the whiteboard manager.
-
Constructor Details
-
Dispatcher
-
-
Method Details
-
setWhiteboardManager
Set or unset the whiteboard manager.- Parameters:
service- The whiteboard manager ornull
-
dispatch
public void dispatch(jakarta.servlet.http.HttpServletRequest req, jakarta.servlet.http.HttpServletResponse res) throws jakarta.servlet.ServletException, IOException Responsible for dispatching a given request to the actual applicable servlet and/or filters in the local registry.- Parameters:
req- theServletRequestto dispatch;res- theServletResponseto dispatch.- Throws:
jakarta.servlet.ServletException- in case of exceptions during the actual dispatching;IOException- in case of I/O problems.
-